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