reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1 2 3 4 5 6 7 8 9 10 11 12 | # Inputs generated with: # echo 'int hello() { return 5; }' > test.c # clang -O -fembed-bitcode -c -o macho-bitcode-x86_64.o test.c # clang -O -fembed-bitcode-marker -c -o macho-bitcode-marker-x86_64.o test.c RUN: llvm-nm -a %p/Inputs/macho-bitcode-x86_64.o \ RUN: | FileCheck %s RUN: llvm-nm -a %p/Inputs/macho-bitcode-marker-x86_64.o \ RUN: | FileCheck %s CHECK: T _hello |