diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2011-01-27 20:30:54 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2011-01-27 20:30:54 +0000 |
commit | 9c1858cf4a91d0f373d2315ccf834adedd197e6e (patch) | |
tree | e67dc1760af0c17b9fb162400e9a65bf9ad6a913 /lib/Transforms/IPO/MergeFunctions.cpp | |
parent | c9d69489ebe12f265828c48defb0278f6bd9121f (diff) |
Unbreak the build.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124426 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/IPO/MergeFunctions.cpp')
-rw-r--r-- | lib/Transforms/IPO/MergeFunctions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/IPO/MergeFunctions.cpp b/lib/Transforms/IPO/MergeFunctions.cpp index d8eddab923..d4ecd55d03 100644 --- a/lib/Transforms/IPO/MergeFunctions.cpp +++ b/lib/Transforms/IPO/MergeFunctions.cpp @@ -460,7 +460,7 @@ bool FunctionComparator::Enumerate(const Value *V1, const Value *V2) { if (V1 == F2 && V2 == F1) return true; - if (Constant *C1 = dyn_cast<Constant>(V1)) { + if (const Constant *C1 = dyn_cast<Constant>(V1)) { if (V1 == V2) return true; const Constant *C2 = dyn_cast<Constant>(V2); if (!C2) return false; |