Simplify the test. NFC.

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
This commit is contained in:
Rafael Espindola 2014-12-08 17:22:06 +00:00
parent bc1055c76d
commit 83fbd8dcd2
2 changed files with 7 additions and 6 deletions

View File

@ -1,5 +0,0 @@
$c = comdat any
@a = alias void ()* @f
define internal void @f() comdat $c {
ret void
}

View 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