From 34468c205f7da41f967489760a7ab97e1bd265b0 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Tue, 14 Jul 2009 00:32:11 +0000 Subject: [PATCH] FreeInst is trapping. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75567 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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; -- 2.34.1