diff options
author | Owen Anderson <resistor@mac.com> | 2010-10-07 22:25:06 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2010-10-07 22:25:06 +0000 |
commit | df7a4f2515ce59b487c24e8bb8ea98c10b3edabf (patch) | |
tree | 001747798d8e0272b6b5fabbde9790e8db3741af /llvm/lib/Transforms/IPO/LoopExtractor.cpp | |
parent | 28ae29420a66397cebbfdb0f226c7bba190beca3 (diff) | |
download | bcm5719-llvm-df7a4f2515ce59b487c24e8bb8ea98c10b3edabf.tar.gz bcm5719-llvm-df7a4f2515ce59b487c24e8bb8ea98c10b3edabf.zip |
Now with fewer extraneous semicolons!
llvm-svn: 115996
Diffstat (limited to 'llvm/lib/Transforms/IPO/LoopExtractor.cpp')
-rw-r--r-- | llvm/lib/Transforms/IPO/LoopExtractor.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/IPO/LoopExtractor.cpp b/llvm/lib/Transforms/IPO/LoopExtractor.cpp index f88dff67d7c..09f80a93c3f 100644 --- a/llvm/lib/Transforms/IPO/LoopExtractor.cpp +++ b/llvm/lib/Transforms/IPO/LoopExtractor.cpp @@ -51,7 +51,7 @@ namespace { char LoopExtractor::ID = 0; INITIALIZE_PASS(LoopExtractor, "loop-extract", - "Extract loops into new functions", false, false); + "Extract loops into new functions", false, false) namespace { /// SingleLoopExtractor - For bugpoint. @@ -63,7 +63,7 @@ namespace { char SingleLoopExtractor::ID = 0; INITIALIZE_PASS(SingleLoopExtractor, "loop-extract-single", - "Extract at most one loop into a new function", false, false); + "Extract at most one loop into a new function", false, false) // createLoopExtractorPass - This pass extracts all natural loops from the // program into a function if it can. @@ -159,7 +159,7 @@ namespace { char BlockExtractorPass::ID = 0; INITIALIZE_PASS(BlockExtractorPass, "extract-blocks", "Extract Basic Blocks From Module (for bugpoint use)", - false, false); + false, false) // createBlockExtractorPass - This pass extracts all blocks (except those // specified in the argument list) from the functions in the module. |