gdb: add target_ops::supports_displaced_step
[deliverable/binutils-gdb.git] / gold / testsuite / pr22266_main.c
CommitLineData
333d0055 1#include <stdlib.h>
033bfb73 2#include <string.h>
333d0055
JC
3
4extern int *p_int_from_a_2;
033bfb73 5extern const char *hello (void);
333d0055
JC
6
7int main (void) {
8 if (*p_int_from_a_2 != 0x11223344)
9 abort ();
033bfb73
CC
10 if (strcmp(hello(), "Hello, world!") != 0)
11 abort ();
333d0055
JC
12 return 0;
13}
This page took 0.135982 seconds and 4 git commands to generate.