]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.hp/hwwatchbus.c
Initial creation of sourceware repository
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.hp / hwwatchbus.c
1 /* This program raises a SIGBUS signal on HP-UX when the
2 pointer "bogus_p" is dereferenced.
3 */
4 int * bogus_p = (int *)3;
5
6 main()
7 {
8 *bogus_p = 0xdeadbeef;
9 }