diff options
author | Bill Wendling <isanbard@gmail.com> | 2008-08-12 23:15:44 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2008-08-12 23:15:44 +0000 |
commit | f21a38700f8d6541411bd4da465bcafc6b0849b7 (patch) | |
tree | d91a61de2af55442186f93dd860852411f3565b1 /llvm/lib/Transforms/IPO/GlobalOpt.cpp | |
parent | ed74a194a7b60b5ca6f8b446622a2d73d0805f3b (diff) | |
download | bcm5719-llvm-f21a38700f8d6541411bd4da465bcafc6b0849b7.tar.gz bcm5719-llvm-f21a38700f8d6541411bd4da465bcafc6b0849b7.zip |
Remove tabs.
llvm-svn: 54707
Diffstat (limited to 'llvm/lib/Transforms/IPO/GlobalOpt.cpp')
-rw-r--r-- | llvm/lib/Transforms/IPO/GlobalOpt.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/IPO/GlobalOpt.cpp b/llvm/lib/Transforms/IPO/GlobalOpt.cpp index c3a21b42389..f63ef46a850 100644 --- a/llvm/lib/Transforms/IPO/GlobalOpt.cpp +++ b/llvm/lib/Transforms/IPO/GlobalOpt.cpp @@ -988,7 +988,7 @@ static bool GlobalLoadUsesSimpleEnoughForHeapSRA(GlobalVariable *GV, // We permit two users of the load: setcc comparing against the null // pointer, and a getelementptr of a specific form. for (Value::use_iterator UI = LI->use_begin(), E = LI->use_end(); - UI != E; ++UI) { + UI != E; ++UI) { // Comparison against null is ok. if (ICmpInst *ICI = dyn_cast<ICmpInst>(*UI)) { if (!isa<ConstantPointerNull>(ICI->getOperand(1))) @@ -1611,7 +1611,7 @@ static bool OnlyCalledDirectly(Function *F) { // See if the function address is passed as an argument. for (User::op_iterator i = User->op_begin() + 1, e = User->op_end(); - i != e; ++i) + i != e; ++i) if (*i == F) return false; } return true; |