From d660f973dc69801615545c74409e77888869aae2 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 14 Apr 2008 15:07:08 +0000 Subject: [PATCH] VAArg may trap. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49646 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 5107b74417a..6f09c907083 100644 --- a/lib/VMCore/Instruction.cpp +++ b/lib/VMCore/Instruction.cpp @@ -266,6 +266,7 @@ bool Instruction::isTrapping(unsigned op) { case Store: case Call: case Invoke: + case VAArg: return true; default: return false; -- 2.34.1