diff options
Diffstat (limited to 'lib/Analysis')
-rw-r--r-- | lib/Analysis/ReachableCode.cpp | 4 | ||||
-rw-r--r-- | lib/Analysis/ThreadSafety.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/Analysis/ReachableCode.cpp b/lib/Analysis/ReachableCode.cpp index bb63e2c184..11f2ebe9ad 100644 --- a/lib/Analysis/ReachableCode.cpp +++ b/lib/Analysis/ReachableCode.cpp @@ -112,8 +112,8 @@ const Stmt *DeadCodeScan::findDeadCode(const clang::CFGBlock *Block) { static int SrcCmp(const void *p1, const void *p2) { return - ((std::pair<const CFGBlock *, const Stmt *>*) p2)->second->getLocStart() < - ((std::pair<const CFGBlock *, const Stmt *>*) p1)->second->getLocStart(); + ((const std::pair<const CFGBlock *, const Stmt *>*) p2)->second->getLocStart() < + ((const std::pair<const CFGBlock *, const Stmt *>*) p1)->second->getLocStart(); } unsigned DeadCodeScan::scanBackwards(const clang::CFGBlock *Start, diff --git a/lib/Analysis/ThreadSafety.cpp b/lib/Analysis/ThreadSafety.cpp index 90c407ac65..b3e97afd90 100644 --- a/lib/Analysis/ThreadSafety.cpp +++ b/lib/Analysis/ThreadSafety.cpp @@ -953,7 +953,7 @@ public: return; } Dec->printName(llvm::errs()); - llvm::errs() << "." << i << " " << ((void*) Dec); + llvm::errs() << "." << i << " " << ((const void*) Dec); } /// Dumps an ASCII representation of the variable map to llvm::errs() |