llvm-6502/test/Transforms/GlobalOpt/alias-resolve.ll
Rafael Espindola 72db10a995 Revert "Prevent alias from pointing to weak aliases."
This reverts commit r204781.

I will follow up to with msan folks to see what is what they
were trying to do with aliases to weak aliases.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204784 91177308-0d34-0410-b5e6-96231b3b80d8
2014-03-26 06:14:40 +00:00

38 lines
657 B
LLVM

; RUN: opt < %s -globalopt -S | FileCheck %s
@foo1 = alias void ()* @foo2
; CHECK: @foo1 = alias void ()* @foo2
@foo2 = alias weak void()* @bar1
; CHECK: @foo2 = alias weak void ()* @bar2
@bar1 = alias void ()* @bar2
; CHECK: @bar1 = alias void ()* @bar2
define void @bar2() {
ret void
}
; CHECK: define void @bar2()
define void @baz() {
entry:
call void @foo1()
; CHECK: call void @foo2()
call void @foo2()
; CHECK: call void @foo2()
call void @bar1()
; CHECK: call void @bar2()
ret void
}
@foo3 = alias void ()* @bar3
; CHECK-NOT: bar3
define internal void @bar3() {
ret void
}
;CHECK: define void @foo3