[llvm-commits] [llvm] r107454 - /llvm/trunk/lib/VMCore/Instruction.cpp
Dan Gohman
gohman at apple.com
Thu Jul 1 17:35:34 PDT 2010
Author: djg
Date: Thu Jul 1 19:35:34 2010
New Revision: 107454
URL: http://llvm.org/viewvc/llvm-project?rev=107454&view=rev
Log:
IndirectBr is not safe to speculatively execute (!)
Modified:
llvm/trunk/lib/VMCore/Instruction.cpp
Modified: llvm/trunk/lib/VMCore/Instruction.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/VMCore/Instruction.cpp?rev=107454&r1=107453&r2=107454&view=diff
==============================================================================
--- llvm/trunk/lib/VMCore/Instruction.cpp (original)
+++ llvm/trunk/lib/VMCore/Instruction.cpp Thu Jul 1 19:35:34 2010
@@ -421,6 +421,7 @@
case Store:
case Ret:
case Br:
+ case IndirectBr:
case Switch:
case Unwind:
case Unreachable:
More information about the llvm-commits
mailing list