aboutsummaryrefslogtreecommitdiffstats
path: root/test/tools/llvm-readobj/Inputs/dynamic-table.c
blob: 6b01ba5388be0feaebe84496ff32031e6d9a4fb2 (plain)
1
2
3
4
5
6
7
8
9
// clang -target mipsel-linux-gnu -shared -fPIC -lc dynamic-table.c \
//       -o dynamic-table-so.mips
// clang -target mipsel-linux-gnu -lc dynamic-table.c \
//       -o dynamic-table-exe.mips
int puts(const char *);

int main(void) {
  puts("Hello, World");
}