summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms/Scalar/ConstantProp.cpp
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2014-02-21 01:53:35 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2014-02-21 01:53:35 +0000
commit612886fc8c1374e991b8dd0711ff391d4fbaae79 (patch)
tree1d600c49428ad8fce73522e1a34327c9105d6fff /llvm/lib/Transforms/Scalar/ConstantProp.cpp
parentf6ec74826e492f31a2e92e5ecbc80ac94d1a3c4b (diff)
downloadbcm5719-llvm-612886fc8c1374e991b8dd0711ff391d4fbaae79.tar.gz
bcm5719-llvm-612886fc8c1374e991b8dd0711ff391d4fbaae79.zip
Rename a few more DataLayout variables.
llvm-svn: 201833
Diffstat (limited to 'llvm/lib/Transforms/Scalar/ConstantProp.cpp')
-rw-r--r--llvm/lib/Transforms/Scalar/ConstantProp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Scalar/ConstantProp.cpp b/llvm/lib/Transforms/Scalar/ConstantProp.cpp
index d5a96eceb99..c15217c093e 100644
--- a/llvm/lib/Transforms/Scalar/ConstantProp.cpp
+++ b/llvm/lib/Transforms/Scalar/ConstantProp.cpp
@@ -67,7 +67,7 @@ bool ConstantPropagation::runOnFunction(Function &F) {
WorkList.insert(&*i);
}
bool Changed = false;
- DataLayout *TD = getAnalysisIfAvailable<DataLayout>();
+ DataLayout *DL = getAnalysisIfAvailable<DataLayout>();
TargetLibraryInfo *TLI = &getAnalysis<TargetLibraryInfo>();
while (!WorkList.empty()) {
@@ -75,7 +75,7 @@ bool ConstantPropagation::runOnFunction(Function &F) {
WorkList.erase(WorkList.begin()); // Get an element from the worklist...
if (!I->use_empty()) // Don't muck with dead instructions...
- if (Constant *C = ConstantFoldInstruction(I, TD, TLI)) {
+ if (Constant *C = ConstantFoldInstruction(I, DL, TLI)) {
// Add all of the users of this instruction to the worklist, they might
// be constant propagatable now...
for (Value::use_iterator UI = I->use_begin(), UE = I->use_end();
OpenPOWER on IntegriCloud