diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2009-01-25 02:32:41 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2009-01-25 02:32:41 +0000 |
commit | c9e8f606787b0bc0c3b08e566b87cc1751694168 (patch) | |
tree | 7002417366ea3667e62ae3c9dc744226f02fae8e /lib/CodeGen/CGExprAgg.cpp | |
parent | 1ef0965bbd46a2915746ffe8067d411b18117415 (diff) |
Rename Expr::isConstantExpr to Expr::isConstantInitializer; this more
accurately states what the function is trying to do and how it is
different from Expr::isEvaluatable. Also get rid of a parameter that is both
unused and inaccurate.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62951 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGExprAgg.cpp')
-rw-r--r-- | lib/CodeGen/CGExprAgg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CGExprAgg.cpp b/lib/CodeGen/CGExprAgg.cpp index 5e36751fb7..058b561f95 100644 --- a/lib/CodeGen/CGExprAgg.cpp +++ b/lib/CodeGen/CGExprAgg.cpp @@ -394,7 +394,7 @@ void AggExprEmitter::VisitInitListExpr(InitListExpr *E) { // FIXME: Should we really be doing this? Should we try to avoid // cases where we emit a global with a lot of zeros? Should // we try to avoid short globals? - if (E->isConstantExpr(CGF.getContext(), 0)) { + if (E->isConstantInitializer(CGF.getContext(), 0)) { llvm::Constant* C = CGF.CGM.EmitConstantExpr(E, &CGF); llvm::GlobalVariable* GV = new llvm::GlobalVariable(C->getType(), true, |