]> git.lizzy.rs Git - rust.git/commitdiff
Update LLVM
authorVadim Chugunov <vadimcn@gmail.com>
Fri, 1 Aug 2014 09:23:05 +0000 (02:23 -0700)
committerVadim Chugunov <vadimcn@gmail.com>
Tue, 5 Aug 2014 00:43:56 +0000 (17:43 -0700)
src/llvm
src/rustllvm/RustWrapper.cpp
src/rustllvm/llvm-auto-clean-trigger

index 0d999e5b315b6ff78fcea772466d985ce53fd8dc..90a314162053a0c51a50a1c603c9203bef241e0d 160000 (submodule)
--- a/src/llvm
+++ b/src/llvm
@@ -1 +1 @@
-Subproject commit 0d999e5b315b6ff78fcea772466d985ce53fd8dc
+Subproject commit 90a314162053a0c51a50a1c603c9203bef241e0d
index 8a3e06aabc69733e7e9547bcf504a24be0496133..8051235da20aa8000b02a499db4efac949505662 100644 (file)
@@ -282,7 +282,7 @@ extern "C" LLVMValueRef LLVMDIBuilderCreateSubroutineType(
     LLVMValueRef ParameterTypes) {
     return wrap(Builder->createSubroutineType(
         unwrapDI<DIFile>(File),
-        unwrapDI<DIArray>(ParameterTypes)));
+        unwrapDI<DITypeArray>(ParameterTypes)));
 }
 
 extern "C" LLVMValueRef LLVMDIBuilderCreateFunction(
@@ -634,7 +634,7 @@ extern "C" void LLVMDICompositeTypeSetTypeArray(
     LLVMValueRef CompositeType,
     LLVMValueRef TypeArray)
 {
-    unwrapDI<DICompositeType>(CompositeType).setTypeArray(unwrapDI<DIArray>(TypeArray));
+    unwrapDI<DICompositeType>(CompositeType).setArrays(unwrapDI<DIArray>(TypeArray));
 }
 
 extern "C" char *LLVMTypeToString(LLVMTypeRef Type) {
index afba5a4dfd8c2fa0cd6176d4b6ae2d633d3722dd..bf488ca1527c1d333052f1ef62afc4900c2ab766 100644 (file)
@@ -1,4 +1,4 @@
 # If this file is modified, then llvm will be forcibly cleaned and then rebuilt.
 # The actual contents of this file do not matter, but to trigger a change on the
 # build bots then the contents should be changed so git updates the mtime.
-2014-07-29
+2014-08-24