Skip to content

Commit

Permalink
Cleanup this test a bit.
Browse files Browse the repository at this point in the history
Use simpler names and remove unnecessary fields.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@220498 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
espindola committed Oct 23, 2014
1 parent 129ab6c commit c32d748
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
4 changes: 4 additions & 0 deletions test/Linker/Inputs/comdat8.ll
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
$c1 = comdat largest

@some_name = private unnamed_addr constant i32 42, comdat $c1
@c1 = alias i32* @some_name
14 changes: 6 additions & 8 deletions test/Linker/comdat8.ll
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
; RUN: not llvm-link %s %p/Inputs/comdat5.ll -S -o - 2>&1 | FileCheck %s
target datalayout = "e-m:w-p:32:32-i64:64-f80:32-n8:16:32-S32"
target triple = "i686-pc-windows-msvc"
; RUN: not llvm-link %s %p/Inputs/comdat8.ll -S -o - 2>&1 | FileCheck %s

$c1 = comdat largest

@some_name = private unnamed_addr constant i32 42, comdat $c1
@c1 = alias i8* inttoptr (i32 ptrtoint (i32* @some_name to i32) to i8*)

$"\01??_7S@@6B@" = comdat largest
define void @some_name() {
ret void
}
@"\01??_7S@@6B@" = alias i8* inttoptr (i32 ptrtoint (void ()* @some_name to i32) to i8*)
; CHECK: COMDAT key involves incomputable alias size.

0 comments on commit c32d748

Please sign in to comment.