about summary refs log tree commit diff
path: root/src/rustllvm/rustllvm.h
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-01-27 12:45:48 -0800
committerAlex Crichton <alex@alexcrichton.com>2014-01-29 23:43:39 -0800
commit8cd935f52a9af8620f608e1baad94282f038a864 (patch)
tree37c3a6ba8a08532e4d23c1d6987af072d98d1b65 /src/rustllvm/rustllvm.h
parentd6d7812da841ddedf6c765eebb655be9866956ce (diff)
downloadrust-8cd935f52a9af8620f608e1baad94282f038a864.tar.gz
rust-8cd935f52a9af8620f608e1baad94282f038a864.zip
Upgrade LLVM
This upgrade brings commit by @eddyb to help optimizations of virtual calls in
a few places (https://github.com/llvm-mirror/llvm/commit/6d2bd95) as well as a
commit by @c-a to *greatly* improve the runtime of the optimization passes
(https://github.com/rust-lang/llvm/pull/3).

Nice work to these guys!
Diffstat (limited to 'src/rustllvm/rustllvm.h')
-rw-r--r--src/rustllvm/rustllvm.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/rustllvm/rustllvm.h b/src/rustllvm/rustllvm.h
index ef7199a6ca8..e45a910fc8c 100644
--- a/src/rustllvm/rustllvm.h
+++ b/src/rustllvm/rustllvm.h
@@ -16,14 +16,12 @@
 #include "llvm/PassManager.h"
 #include "llvm/IR/InlineAsm.h"
 #include "llvm/IR/LLVMContext.h"
-#include "llvm/Analysis/Verifier.h"
+#include "llvm/IR/IRPrintingPasses.h"
 #include "llvm/Analysis/Passes.h"
 #include "llvm/Analysis/Lint.h"
 #include "llvm/ADT/ArrayRef.h"
 #include "llvm/ADT/Triple.h"
 #include "llvm/ADT/DenseSet.h"
-#include "llvm/Assembly/Parser.h"
-#include "llvm/Assembly/PrintModulePass.h"
 #include "llvm/Support/CommandLine.h"
 #include "llvm/Support/FormattedStream.h"
 #include "llvm/Support/Timer.h"