mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-29 14:20:29 +00:00
LowerBitSets: Do not assign names to aliases of unnamed bitset element objects.
The restriction on unnamed aliases was removed in r239921. Mostly reverts r239590, but we keep the test. llvm-svn: 239923
This commit is contained in:
parent
8f8f980667
commit
e555c294f0
@ -556,9 +556,8 @@ void LowerBitSets::buildBitSetsFromGlobals(
|
||||
} else {
|
||||
GlobalAlias *GAlias =
|
||||
GlobalAlias::create(Globals[I]->getType(), Globals[I]->getLinkage(),
|
||||
"data", CombinedGlobalElemPtr, M);
|
||||
if (Globals[I]->hasName())
|
||||
GAlias->takeName(Globals[I]);
|
||||
"", CombinedGlobalElemPtr, M);
|
||||
GAlias->takeName(Globals[I]);
|
||||
Globals[I]->replaceAllUsesWith(GAlias);
|
||||
}
|
||||
Globals[I]->eraseFromParent();
|
||||
|
@ -2,7 +2,8 @@
|
||||
|
||||
target datalayout = "e-p:32:32"
|
||||
|
||||
; CHECK: @data ={{.*}} alias
|
||||
; CHECK: @{{[0-9]+}} = alias
|
||||
; CHECK: @{{[0-9]+}} = alias
|
||||
@0 = constant i32 1
|
||||
@1 = constant [2 x i32] [i32 2, i32 3]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user