OSDN Git Service

remove warning
authorChris Lattner <sabre@nondot.org>
Mon, 19 Feb 2007 19:46:17 +0000 (19:46 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 19 Feb 2007 19:46:17 +0000 (19:46 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34424 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/Instruction.cpp

index ffad11b..2a740fc 100644 (file)
@@ -237,11 +237,11 @@ bool Instruction::mayWriteToMemory() const {
   case Instruction::VAArg:
     return true;
   case Instruction::Call:
-    if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(this)) {
+    //if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(this)) {
       // If the intrinsic doesn't write memory, it is safe.
       // FIXME: this is obviously supposed to determine which  intrinsics 
       // don't write to memory, but hasn't been implemented yet.
-    }
+    //}
     return true;
   case Instruction::Load:
     return cast<LoadInst>(this)->isVolatile();