mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 00:01:39 +00:00
Don't append ".b" to the names of globals that are being shrunk to booleans.
llvm-svn: 70630
This commit is contained in:
parent
a4b28ca3c9
commit
3e85ff61b3
@ -1549,10 +1549,12 @@ static bool TryToShrinkGlobalToBoolean(GlobalVariable *GV, Constant *OtherVal) {
|
||||
|
||||
// Create the new global, initializing it to false.
|
||||
GlobalVariable *NewGV = new GlobalVariable(Type::Int1Ty, false,
|
||||
GlobalValue::InternalLinkage, ConstantInt::getFalse(),
|
||||
GV->getName()+".b",
|
||||
GlobalValue::InternalLinkage,
|
||||
ConstantInt::getFalse(),
|
||||
"",
|
||||
(Module *)NULL,
|
||||
GV->isThreadLocal());
|
||||
NewGV->takeName(GV);
|
||||
GV->getParent()->getGlobalList().insert(GV, NewGV);
|
||||
|
||||
Constant *InitVal = GV->getInitializer();
|
||||
|
Loading…
x
Reference in New Issue
Block a user