Fix TryToShrinkGlobalToBoolean in GlobalOpt, so that it does not discard address spaces.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@172051 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Joey Gouly 2013-01-10 10:31:11 +00:00
parent 8a0f3f7811
commit 1d505a33f9
2 changed files with 18 additions and 12 deletions

View File

@ -1825,7 +1825,8 @@ static bool TryToShrinkGlobalToBoolean(GlobalVariable *GV, Constant *OtherVal) {
GlobalValue::InternalLinkage,
ConstantInt::getFalse(GV->getContext()),
GV->getName()+".b",
GV->getThreadLocalMode());
GV->getThreadLocalMode(),
GV->getType()->getAddressSpace());
GV->getParent()->getGlobalList().insert(GV, NewGV);
Constant *InitVal = GV->getInitializer();

View File

@ -1,23 +1,28 @@
; RUN: opt < %s -globalopt -instcombine | \
; RUN: llvm-dis | grep "ret i1 true"
; RUN: opt < %s -S -globalopt -instcombine | FileCheck %s
;; check that global opt turns integers that only hold 0 or 1 into bools.
@G = internal global i32 0 ; <i32*> [#uses=3]
@G = internal addrspace(1) global i32 0
; CHECK @G.b
; CHECK addrspace(1)
; CHECK global i1 0
define void @set1() {
store i32 0, i32* @G
ret void
store i32 0, i32 addrspace(1)* @G
; CHECK: store i1 false
ret void
}
define void @set2() {
store i32 1, i32* @G
ret void
store i32 1, i32 addrspace(1)* @G
; CHECK: store i1 true
ret void
}
define i1 @get() {
%A = load i32* @G ; <i32> [#uses=1]
%C = icmp slt i32 %A, 2 ; <i1> [#uses=1]
ret i1 %C
; CHECK @get
%A = load i32 addrspace(1) * @G
%C = icmp slt i32 %A, 2
ret i1 %C
; CHECK: ret i1 true
}