Whitespace.
authorNAKAMURA Takumi <geek4civic@gmail.com>
Mon, 20 Jan 2014 15:47:15 +0000 (15:47 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Mon, 20 Jan 2014 15:47:15 +0000 (15:47 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199667 91177308-0d34-0410-b5e6-96231b3b80d8

tools/opt/AnalysisWrappers.cpp

index 047a82b5158936e5d01d83de51f5be0feb01a21e..b94902692b0d901255dba445d8b1cd5f45062582 100644 (file)
@@ -35,16 +35,16 @@ namespace {
     virtual bool runOnModule(Module &M) {
       for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
         if (!I->isDeclaration()) continue;
-        
+
         bool PrintedFn = false;
         for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
              UI != E; ++UI) {
           Instruction *User = dyn_cast<Instruction>(*UI);
           if (!User) continue;
-          
+
           CallSite CS(cast<Value>(User));
           if (!CS) continue;
-          
+
           for (CallSite::arg_iterator AI = CS.arg_begin(),
                E = CS.arg_end(); AI != E; ++AI) {
             if (!isa<Constant>(*AI)) continue;