brintos

brintos / llvm-project-archived public Read only

0
0
Text · 318 B · 803e1c8 Raw
12 lines · plain
1// ppc64 was compiled from this source on a big-endian 64-bit PowerPC box2// 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 %s8 9CHECK: foo10CHECK: bar11CHECK: _start12