mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-16 11:30:51 +00:00
dd848e93cc
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@221679 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
343 B
Plaintext
12 lines
343 B
Plaintext
// ppc64 was compiled from this source on a big-endian 64-bit PowerPC box
|
|
// with just "clang -nostdlib":
|
|
int foo() { return 0; }
|
|
int bar() { return foo(); }
|
|
int _start() { return bar(); }
|
|
|
|
RUN: %python -c "print('0x1000014c\n0x1000018c\n0x100001cc')" | llvm-symbolizer -obj=%p/Inputs/ppc64 | FileCheck %s
|
|
|
|
CHECK: foo
|
|
CHECK: bar
|
|
CHECK: _start
|