Whitespace. NFC
authorJustin Bogner <mail@justinbogner.com>
Fri, 30 Oct 2015 23:02:38 +0000 (23:02 +0000)
committerJustin Bogner <mail@justinbogner.com>
Fri, 30 Oct 2015 23:02:38 +0000 (23:02 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@251724 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/InitializePasses.h
lib/Transforms/IPO/IPO.cpp
lib/Transforms/IPO/StripDeadPrototypes.cpp
test/Transforms/ADCE/basictest.ll

index a33f69c7e4ead8b7791fc238cb3f79ec8954ffa6..3c2160292d54da2533ec1109f205418294849201 100644 (file)
@@ -247,7 +247,7 @@ void initializeSCEVAAWrapperPassPass(PassRegistry&);
 void initializeScalarEvolutionWrapperPassPass(PassRegistry&);
 void initializeShrinkWrapPass(PassRegistry &);
 void initializeSimpleInlinerPass(PassRegistry&);
-void initializeShadowStackGCLoweringPass(PassRegistry&);  
+void initializeShadowStackGCLoweringPass(PassRegistry&);
 void initializeRegisterCoalescerPass(PassRegistry&);
 void initializeSingleLoopExtractorPass(PassRegistry&);
 void initializeSinkingPass(PassRegistry&);
index 6efa1193dc0fcaad345f77f72690ba08a4b7bfdd..7ecc37710ed6f0455eeca68720325960a8b47f1d 100644 (file)
@@ -7,8 +7,8 @@
 //
 //===----------------------------------------------------------------------===//
 //
-// This file implements the common infrastructure (including C bindings) for 
-// libLLVMIPO.a, which implements several transformations over the LLVM 
+// This file implements the common infrastructure (including C bindings) for
+// libLLVMIPO.a, which implements several transformations over the LLVM
 // intermediate representation.
 //
 //===----------------------------------------------------------------------===//
index eba79218aed26aa6f74e7359a2ea052e1f792ba5..22ba1c6c6740a4e10bc68742940bb3471203ecf1 100644 (file)
@@ -7,7 +7,7 @@
 //
 //===----------------------------------------------------------------------===//
 //
-// This pass loops over all of the functions in the input module, looking for 
+// This pass loops over all of the functions in the input module, looking for
 // dead declarations and removes them. Dead declarations are declarations of
 // functions for which no implementation is available (i.e., declarations for
 // unused library functions).
@@ -44,7 +44,7 @@ INITIALIZE_PASS(StripDeadPrototypesPass, "strip-dead-prototypes",
 
 bool StripDeadPrototypesPass::runOnModule(Module &M) {
   bool MadeChange = false;
-  
+
   // Erase dead function prototypes.
   for (Module::iterator I = M.begin(), E = M.end(); I != E; ) {
     Function *F = &*I++;
@@ -64,7 +64,7 @@ bool StripDeadPrototypesPass::runOnModule(Module &M) {
     if (GV->isDeclaration() && GV->use_empty())
       GV->eraseFromParent();
   }
-  
+
   // Return an indication of whether we changed anything or not.
   return MadeChange;
 }
index 378d70288f3f5992e50e3cf1c132686a93cdeb45..61c4224df97ac0ad358cebdd8cd984b818e261c4 100644 (file)
@@ -15,5 +15,3 @@ BB4:            ; preds = %BB1
         %X = phi i32 [ %A, %BB1 ]               ; <i32> [#uses=1]
         br label %BB3
 }
-
-