Simplify the test. NFC.
authorRafael Espindola <rafael.espindola@gmail.com>
Mon, 8 Dec 2014 17:22:06 +0000 (17:22 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Mon, 8 Dec 2014 17:22:06 +0000 (17:22 +0000)
Since the main file was empty, we can just copy the content of the Input file
into it.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@223666 91177308-0d34-0410-b5e6-96231b3b80d8

test/Linker/Inputs/comdat9.ll [deleted file]
test/Linker/comdat9.ll

diff --git a/test/Linker/Inputs/comdat9.ll b/test/Linker/Inputs/comdat9.ll
deleted file mode 100644 (file)
index 679dbde..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-$c = comdat any
-@a = alias void ()* @f
-define internal void @f() comdat $c {
-  ret void
-}
index eada8c62bef166669e0e76ca91403aa221f81f43..0e9c217180d455e2977f6d4358582df2392bd051 100644 (file)
@@ -1,4 +1,10 @@
-; RUN: llvm-link %s %p/Inputs/comdat9.ll -S -o - | FileCheck %s
+; RUN: llvm-link %s -S -o - | FileCheck %s
+
+$c = comdat any
+@a = alias void ()* @f
+define internal void @f() comdat $c {
+  ret void
+}
 
 ; CHECK: $c = comdat any
 ; CHECK: @a = alias void ()* @f