commit | 9c68a7bb45ebf71cec5ab4eab7c73aacdfce16df | [log] [tgz] |
---|---|---|
author | Gabor Greif <ggreif@gmail.com> | Fri Jun 25 07:57:14 2010 +0000 |
committer | Gabor Greif <ggreif@gmail.com> | Fri Jun 25 07:57:14 2010 +0000 |
tree | 9a6c2b9f70d437a8c484286c1e17170f46f89fc2 | |
parent | 7f1d7f5779e266cf1de8f3b4d7025f7f7f8eba85 [diff] [blame] |
use ArgOperand API (some hunks I could split) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106824 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Transforms/Utils/AddrModeMatcher.cpp b/lib/Transforms/Utils/AddrModeMatcher.cpp index ea9d1c1..f0cc6f7 100644 --- a/lib/Transforms/Utils/AddrModeMatcher.cpp +++ b/lib/Transforms/Utils/AddrModeMatcher.cpp
@@ -450,7 +450,7 @@ if (CallInst *CI = dyn_cast<CallInst>(U)) { InlineAsm *IA = dyn_cast<InlineAsm>(CI->getCalledValue()); - if (IA == 0) return true; + if (!IA) return true; // If this is a memory operand, we're cool, otherwise bail out. if (!IsOperandAMemoryOperand(CI, IA, I, TLI))