diff options
author | Oliver Stannard <oliver.stannard@arm.com> | 2015-06-08 16:55:31 +0000 |
---|---|---|
committer | Oliver Stannard <oliver.stannard@arm.com> | 2015-06-08 16:55:31 +0000 |
commit | 8379e298b31030b2731ec5c99ebbd7e05592f45d (patch) | |
tree | 2e0b12fd5219dcecd1cb562e1b91036fcb513fd8 /llvm/lib/CodeGen/GlobalMerge.cpp | |
parent | 6aca6f0be55be9c2dc7e9457cc9d67bff86e43e0 (diff) | |
download | bcm5719-llvm-8379e298b31030b2731ec5c99ebbd7e05592f45d.tar.gz bcm5719-llvm-8379e298b31030b2731ec5c99ebbd7e05592f45d.zip |
Fix assertion failure in global-merge with unused ConstantExpr
The global-merge pass was crashing because it assumes that all ConstantExprs
(reached via the global variables that they use) have at least one user.
I haven't worked out a way to test this, as an unused ConstantExpr cannot be
represented by serialised IR, and global-merge can only be run in llc, which
does not run any passes which can make a ConstantExpr dead.
This (reduced to the point of silliness) C code triggers this bug when compiled
for arm-none-eabi at -O1:
static a = 7;
static volatile b[10] = {&a};
c;
main() {
c = 0;
for (; c < 10;)
printf(b[c]);
}
Differential Revision: http://reviews.llvm.org/D10314
llvm-svn: 239308
Diffstat (limited to 'llvm/lib/CodeGen/GlobalMerge.cpp')
-rw-r--r-- | llvm/lib/CodeGen/GlobalMerge.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/GlobalMerge.cpp b/llvm/lib/CodeGen/GlobalMerge.cpp index df54a9c6916..37b3bf17ed1 100644 --- a/llvm/lib/CodeGen/GlobalMerge.cpp +++ b/llvm/lib/CodeGen/GlobalMerge.cpp @@ -280,6 +280,8 @@ bool GlobalMerge::doMerge(SmallVectorImpl<GlobalVariable*> &Globals, // users, so look through ConstantExpr... Use *UI, *UE; if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U.getUser())) { + if (CE->use_empty()) + continue; UI = &*CE->use_begin(); UE = nullptr; } else if (isa<Instruction>(U.getUser())) { |