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 | c336a13db5b8698585ebcb2e664024fae06fec76 (patch) | |
tree | f75461679799d26ccdbd6bd106d58d5774f3ae89 /lib/VMCore | |
parent | a543aa21fce0a04d18d94d7f4d5f148a012068bd (diff) | |
download | external_llvm-c336a13db5b8698585ebcb2e664024fae06fec76.zip external_llvm-c336a13db5b8698585ebcb2e664024fae06fec76.tar.gz external_llvm-c336a13db5b8698585ebcb2e664024fae06fec76.tar.bz2 |
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')
-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 86aff9b..78158be 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 |