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 | ce665bd2e2b581ab0858d1afe359192bac96b868 (patch) | |
tree | a34d06e0728b9003fc9f04a2755d35aaaae9d934 /include/llvm/PassSupport.h | |
parent | 0e99219e03b1e41addb374edbe7b6098f7c071a3 (diff) |
Now with fewer extraneous semicolons!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115996 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/PassSupport.h')
-rw-r--r-- | include/llvm/PassSupport.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/PassSupport.h b/include/llvm/PassSupport.h index 4c630105bb..37010ed0a6 100644 --- a/include/llvm/PassSupport.h +++ b/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 |