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: llvm-symbolizer 0x1000014c 0x1000018c 0x100001cc -obj=%p/Inputs/ppc64 | FileCheck %s
8
9CHECK: foo
10CHECK: bar
11CHECK: _start
12