summaryrefslogtreecommitdiffstats
path: root/llvm/include
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2010-10-07 22:25:06 +0000
committerOwen Anderson <resistor@mac.com>2010-10-07 22:25:06 +0000
commitdf7a4f2515ce59b487c24e8bb8ea98c10b3edabf (patch)
tree001747798d8e0272b6b5fabbde9790e8db3741af /llvm/include
parent28ae29420a66397cebbfdb0f226c7bba190beca3 (diff)
downloadbcm5719-llvm-df7a4f2515ce59b487c24e8bb8ea98c10b3edabf.tar.gz
bcm5719-llvm-df7a4f2515ce59b487c24e8bb8ea98c10b3edabf.zip
Now with fewer extraneous semicolons!
llvm-svn: 115996
Diffstat (limited to 'llvm/include')
-rw-r--r--llvm/include/llvm/PassSupport.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/include/llvm/PassSupport.h b/llvm/include/llvm/PassSupport.h
index 4c630105bba..37010ed0a66 100644
--- a/llvm/include/llvm/PassSupport.h
+++ b/llvm/include/llvm/PassSupport.h
@@ -134,7 +134,7 @@ private:
PassInfo::NormalCtor_t(callDefaultCtor< passName >), cfg, analysis); \
Registry.registerPass(*PI); \
} \
- static RegisterPass<passName> passName ## _info(arg, name, cfg, analysis)
+ static RegisterPass<passName> passName ## _info(arg, name, cfg, analysis);
template<typename PassName>
@@ -216,7 +216,7 @@ struct RegisterAnalysisGroup : public RegisterAGBase {
PassInfo *AI = new PassInfo(name, & agName :: ID); \
Registry.registerAnalysisGroup(& agName ::ID, 0, *AI, false); \
} \
- static RegisterAnalysisGroup<agName> agName##_info (name)
+ static RegisterAnalysisGroup<agName> agName##_info (name);
#define INITIALIZE_AG_PASS(passName, agName, arg, name, cfg, analysis, def) \
void llvm::initialize##passName##Pass(PassRegistry &Registry) { \
@@ -228,7 +228,7 @@ struct RegisterAnalysisGroup : public RegisterAGBase {
Registry.registerAnalysisGroup(& agName ::ID, & passName ::ID, *AI, def); \
} \
static RegisterPass<passName> passName ## _info(arg, name, cfg, analysis); \
- static RegisterAnalysisGroup<agName, def> passName ## _ag(passName ## _info)
+ static RegisterAnalysisGroup<agName, def> passName ## _ag(passName ## _info);
//===---------------------------------------------------------------------------
/// PassRegistrationListener class - This class is meant to be derived from by
OpenPOWER on IntegriCloud