diff options
-rw-r--r-- | test/Object/TestObjectFiles/archive-test.a-bitcode | bin | 790 -> 0 bytes | |||
-rw-r--r-- | test/Object/TestObjectFiles/trivial.ll | 12 | ||||
-rw-r--r-- | test/Object/nm-archive.test | 5 |
3 files changed, 15 insertions, 2 deletions
diff --git a/test/Object/TestObjectFiles/archive-test.a-bitcode b/test/Object/TestObjectFiles/archive-test.a-bitcode Binary files differdeleted file mode 100644 index 3aeb34fa33..0000000000 --- a/test/Object/TestObjectFiles/archive-test.a-bitcode +++ /dev/null diff --git a/test/Object/TestObjectFiles/trivial.ll b/test/Object/TestObjectFiles/trivial.ll new file mode 100644 index 0000000000..25ece7611a --- /dev/null +++ b/test/Object/TestObjectFiles/trivial.ll @@ -0,0 +1,12 @@ +@.str = private unnamed_addr constant [13 x i8] c"Hello World\0A\00", align 1 + +define i32 @main() nounwind { +entry: + %call = tail call i32 @puts(i8* getelementptr inbounds ([13 x i8]* @.str, i32 0, i32 0)) nounwind + tail call void bitcast (void (...)* @SomeOtherFunction to void ()*)() nounwind + ret i32 0 +} + +declare i32 @puts(i8* nocapture) nounwind + +declare void @SomeOtherFunction(...) diff --git a/test/Object/nm-archive.test b/test/Object/nm-archive.test index da6144ee71..8ed81bfaac 100644 --- a/test/Object/nm-archive.test +++ b/test/Object/nm-archive.test @@ -1,7 +1,8 @@ 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 +RUN: llvm-as %p/TestObjectFiles/trivial.ll -o=%t1 +RUN: llvm-ar rcs %t2 %t1 +RUN: llvm-nm %t2 | FileCheck %s -check-prefix BITCODE COFF: trivial-object-test.coff-i386: |