• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// ppc64 was compiled from this source on a big-endian 64-bit PowerPC box
2// with just "clang -nostdlib":
3int foo() { return 0; }
4int bar() { return foo(); }
5int _start() { return bar(); }
6
7RUN: %python -c "print('0x1000014c\n0x1000018c\n0x100001cc')" | llvm-symbolizer -obj=%p/Inputs/ppc64 | FileCheck %s
8
9CHECK: foo
10CHECK: bar
11CHECK: _start
12