For PR411:
[oota-llvm.git] / include / llvm / IntrinsicInst.h
index 996c83cb8ef3ed4ef5010d76173d887bfad411fd..4e4d47513dd005046d335d0fa6dd9bbcb24d5a21 100644 (file)
@@ -97,10 +97,10 @@ namespace llvm {
     }
 
     unsigned getLine() const {
-      return unsigned(cast<ConstantInt>(getOperand(1))->getRawValue());
+      return unsigned(cast<ConstantInt>(getOperand(1))->getZExtValue());
     }
     unsigned getColumn() const {
-      return unsigned(cast<ConstantInt>(getOperand(2))->getRawValue());
+      return unsigned(cast<ConstantInt>(getOperand(2))->getZExtValue());
     }
     
     std::string getFileName() const;