diff options
author | Dan Gohman <gohman@apple.com> | 2008-05-14 00:42:30 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-05-14 00:42:30 +0000 |
commit | 4d9dd6beae061712b6be8befa301b1376fd6d70d (patch) | |
tree | f75461679799d26ccdbd6bd106d58d5774f3ae89 /lib/VMCore/Verifier.cpp | |
parent | 5d9bac6d8d3eb44823009e6d2609e39256df7e44 (diff) |
Make PreVerifyID, IntSigsEnd, and KillSigsEnd const.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51088 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/Verifier.cpp')
-rw-r--r-- | lib/VMCore/Verifier.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Verifier.cpp b/lib/VMCore/Verifier.cpp index 86aff9bdad..78158bea67 100644 --- a/lib/VMCore/Verifier.cpp +++ b/lib/VMCore/Verifier.cpp @@ -97,7 +97,7 @@ namespace { // Anonymous namespace for class char PreVerifier::ID = 0; static RegisterPass<PreVerifier> PreVer("preverify", "Preliminary module verification"); -static const PassInfo *PreVerifyID = &PreVer; +static const PassInfo *const PreVerifyID = &PreVer; namespace { struct VISIBILITY_HIDDEN |