[llvm-commits] CVS: llvm/lib/Transforms/Utils/LowerInvoke.cpp
Reid Spencer
reid at x10sys.com
Sat Feb 3 16:41:06 PST 2007
Changes in directory llvm/lib/Transforms/Utils:
LowerInvoke.cpp updated: 1.50 -> 1.51
---
Log message:
For PR1163: http://llvm.org/PR1163 :
Make the Module's dependent library use a std::vector instead of SetVector
adjust #includes in .cpp files because SetVector.h is no longer included.
---
Diffs of the changes: (+1 -0)
LowerInvoke.cpp | 1 +
1 files changed, 1 insertion(+)
Index: llvm/lib/Transforms/Utils/LowerInvoke.cpp
diff -u llvm/lib/Transforms/Utils/LowerInvoke.cpp:1.50 llvm/lib/Transforms/Utils/LowerInvoke.cpp:1.51
--- llvm/lib/Transforms/Utils/LowerInvoke.cpp:1.50 Sun Jan 7 02:12:01 2007
+++ llvm/lib/Transforms/Utils/LowerInvoke.cpp Sat Feb 3 18:40:42 2007
@@ -48,6 +48,7 @@
#include "llvm/Support/Compiler.h"
#include "llvm/Target/TargetLowering.h"
#include <csetjmp>
+#include <set>
using namespace llvm;
STATISTIC(NumInvokes, "Number of invokes replaced");
More information about the llvm-commits
mailing list