mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
89e83b38cd
llvm-svn: 140627
18 lines
533 B
Plaintext
18 lines
533 B
Plaintext
RUN: llvm-nm %p/TestObjectFiles/archive-test.a-coff-i386 \
|
|
RUN: | FileCheck %s -check-prefix COFF
|
|
RUN: llvm-nm %p/TestObjectFiles/archive-test.a-bitcode \
|
|
RUN: | FileCheck %s -check-prefix BITCODE
|
|
|
|
|
|
COFF: trivial-object-test.coff-i386:
|
|
COFF-NEXT: 00000000 d .data
|
|
COFF-NEXT: 00000000 t .text
|
|
COFF-NEXT: 00000000 d L_.str
|
|
COFF-NEXT: U _SomeOtherFunction
|
|
COFF-NEXT: 00000000 T _main
|
|
COFF-NEXT: U _puts
|
|
|
|
BITCODE: U SomeOtherFunction
|
|
BITCODE-NEXT: T main
|
|
BITCODE-NEXT: U puts
|