Fix typeos
authorChris Lattner <sabre@nondot.org>
Wed, 14 May 2003 17:53:49 +0000 (17:53 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 14 May 2003 17:53:49 +0000 (17:53 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6204 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/ExecutionEngine.cpp

index df4bac69472b6db46440ae7d996c923503f675cf..1750b58d3d20614d2e7fe441598495805690cb7b 100644 (file)
@@ -63,10 +63,10 @@ GenericValue ExecutionEngine::getConstantValue(const Constant *C) {
     }
 
     case Instruction::Add:
-      if (C->getOperand(0)->getType() == Type::LongTy ||
-          C->getOperand(0)->getType() == Type::ULongTy)
-        Result.LongVal = getConstantValue(C->getOperand(0)).LongVal +
-                         getConstantValue(C->getOperand(1)).LongVal;
+      if (CE->getOperand(0)->getType() == Type::LongTy ||
+          CE->getOperand(0)->getType() == Type::ULongTy)
+        Result.LongVal = getConstantValue(CE->getOperand(0)).LongVal +
+                         getConstantValue(CE->getOperand(1)).LongVal;
       else
         break;
       return Result;