From 194a3c6000c0a1a05b23dacd14339387369f66bf Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Tue, 14 Jul 2009 00:32:11 +0000 Subject: [PATCH] FreeInst is trapping. llvm-svn: 75567 --- lib/VMCore/Instruction.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/VMCore/Instruction.cpp b/lib/VMCore/Instruction.cpp index 4fc9f3c7e77..99fd8d09e5b 100644 --- a/lib/VMCore/Instruction.cpp +++ b/lib/VMCore/Instruction.cpp @@ -380,6 +380,7 @@ bool Instruction::isTrapping(unsigned op) { case Call: case Invoke: case VAArg: + case Free: return true; default: return false;