[llvm] r223666 - Simplify the test. NFC.

Rafael Espindola rafael.espindola at gmail.com
Mon Dec 8 09:22:06 PST 2014


Author: rafael
Date: Mon Dec  8 11:22:06 2014
New Revision: 223666

URL: http://llvm.org/viewvc/llvm-project?rev=223666&view=rev
Log:
Simplify the test. NFC.

Since the main file was empty, we can just copy the content of the Input file
into it.

Removed:
    llvm/trunk/test/Linker/Inputs/comdat9.ll
Modified:
    llvm/trunk/test/Linker/comdat9.ll

Removed: llvm/trunk/test/Linker/Inputs/comdat9.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Linker/Inputs/comdat9.ll?rev=223665&view=auto
==============================================================================
--- llvm/trunk/test/Linker/Inputs/comdat9.ll (original)
+++ llvm/trunk/test/Linker/Inputs/comdat9.ll (removed)
@@ -1,5 +0,0 @@
-$c = comdat any
- at a = alias void ()* @f
-define internal void @f() comdat $c {
-  ret void
-}

Modified: llvm/trunk/test/Linker/comdat9.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Linker/comdat9.ll?rev=223666&r1=223665&r2=223666&view=diff
==============================================================================
--- llvm/trunk/test/Linker/comdat9.ll (original)
+++ llvm/trunk/test/Linker/comdat9.ll Mon Dec  8 11:22:06 2014
@@ -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
+ at a = alias void ()* @f
+define internal void @f() comdat $c {
+  ret void
+}
 
 ; CHECK: $c = comdat any
 ; CHECK: @a = alias void ()* @f





More information about the llvm-commits mailing list