Add tests for the various emit-llvm plugin options.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@214102 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Rafael Espindola 2014-07-28 17:37:25 +00:00
parent e7dac08dea
commit 3ee48e0c0a

View File

@ -0,0 +1,18 @@
; RUN: llvm-as %s -o %t.o
; RUN: ld -plugin %llvmshlibdir/LLVMgold.so \
; RUN: --plugin-opt=emit-llvm \
; RUN: -shared %t.o -o %t2.o
; RUN: llvm-dis %t2.o -o /dev/null
; RUN: ld -plugin %llvmshlibdir/LLVMgold.so \
; RUN: --plugin-opt=also-emit-llvm \
; RUN: -shared %t.o -o %t3.o
; RUN: llvm-dis %t3.o.bc -o /dev/null
; RUN: ld -plugin %llvmshlibdir/LLVMgold.so \
; RUN: --plugin-opt=also-emit-llvm=%t4 \
; RUN: -shared %t.o -o %t3.o
; RUN: llvm-dis %t4 -o /dev/null
target triple = "x86_64-unknown-linux-gnu"