diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-05-02 20:02:38 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-05-02 20:02:38 +0000 |
commit | f988120aabcf64227429e37c2c1f7e7704a9c616 (patch) | |
tree | 8bc9e86b2d5f9f2d240db57b77bd846469b94fa0 | |
parent | d99bbdfb77a953e85016afa68b68835fcbe7da4f (diff) | |
download | klee-f988120aabcf64227429e37c2c1f7e7704a9c616.tar.gz |
Unbreak inline asm warning.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@102874 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/klee/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/klee/main.cpp b/tools/klee/main.cpp index 08c33cae..756ebb68 100644 --- a/tools/klee/main.cpp +++ b/tools/klee/main.cpp @@ -807,7 +807,7 @@ void externalsAndGlobalsCheck(const Module *m) { for (Function::const_iterator bbIt = fnIt->begin(), bb_ie = fnIt->end(); bbIt != bb_ie; ++bbIt) { for (BasicBlock::const_iterator it = bbIt->begin(), ie = bbIt->end(); - it != it; ++it) { + it != ie; ++it) { if (const CallInst *ci = dyn_cast<CallInst>(it)) { if (isa<InlineAsm>(ci->getCalledValue())) { klee_warning_once(&*fnIt, |