From: Bill Wendling Date: Tue, 12 Aug 2008 23:15:44 +0000 (+0000) Subject: Remove tabs. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=f9e67aca52b3d889f4a5c38aaaa336020bba8ae4;p=oota-llvm.git Remove tabs. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54707 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/IPO/GlobalOpt.cpp b/lib/Transforms/IPO/GlobalOpt.cpp index c3a21b42389..f63ef46a850 100644 --- a/lib/Transforms/IPO/GlobalOpt.cpp +++ b/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(*UI)) { if (!isa(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;