Simplify the test. NFC.

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

llvm-svn: 223666
This commit is contained in:
Rafael Espindola 2014-12-08 17:22:06 +00:00
parent 19bf57eed4
commit bc01844641
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