From 6dca51502a264ceb4c10156891c13fb9dd90e515 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Mon, 28 Jul 2014 17:37:25 +0000 Subject: [PATCH] Add tests for the various emit-llvm plugin options. llvm-svn: 214102 --- llvm/test/tools/gold/emit-llvm.ll | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 llvm/test/tools/gold/emit-llvm.ll diff --git a/llvm/test/tools/gold/emit-llvm.ll b/llvm/test/tools/gold/emit-llvm.ll new file mode 100644 index 0000000..ebf0003 --- /dev/null +++ b/llvm/test/tools/gold/emit-llvm.ll @@ -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" -- 2.7.4