diff options
| author | Michael Woerister <michaelwoerister@posteo> | 2014-06-12 18:06:14 +0200 |
|---|---|---|
| committer | Michael Woerister <michaelwoerister@posteo> | 2014-06-12 18:48:14 +0200 |
| commit | c7426cf05a166fca8aa76a690bad17111ea0dea4 (patch) | |
| tree | a078303743bcb3c35d54a6e323687aaaa7d1e7aa /src/rustllvm/RustWrapper.cpp | |
| parent | 0a98a4e422bd2d80ee7910b00c0286f1eefde9c5 (diff) | |
| download | rust-c7426cf05a166fca8aa76a690bad17111ea0dea4.tar.gz rust-c7426cf05a166fca8aa76a690bad17111ea0dea4.zip | |
debuginfo: Fix issue with unique type IDs not being passed to LLVM for LLVM 3.4
Diffstat (limited to 'src/rustllvm/RustWrapper.cpp')
| -rw-r--r-- | src/rustllvm/RustWrapper.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/rustllvm/RustWrapper.cpp b/src/rustllvm/RustWrapper.cpp index 2157aecf376..f42844b9f19 100644 --- a/src/rustllvm/RustWrapper.cpp +++ b/src/rustllvm/RustWrapper.cpp @@ -318,7 +318,7 @@ extern "C" LLVMValueRef LLVMDIBuilderCreateStructType( unwrapDI<DIArray>(Elements), RunTimeLang, unwrapDI<DIType>(VTableHolder) -#if LLVM_VERSION_MINOR >= 5 +#if LLVM_VERSION_MINOR >= 4 ,UniqueId #endif )); @@ -510,7 +510,7 @@ extern "C" LLVMValueRef LLVMDIBuilderCreateUnionType( Flags, unwrapDI<DIArray>(Elements), RunTimeLang -#if LLVM_VERSION_MINOR >= 5 +#if LLVM_VERSION_MINOR >= 4 ,UniqueId #endif )); @@ -734,6 +734,11 @@ LLVMVersionMinor() { return LLVM_VERSION_MINOR; } +extern "C" int +LLVMVersionMajor() { + return LLVM_VERSION_MAJOR; +} + // Note that the two following functions look quite similar to the // LLVMGetSectionName function. Sadly, it appears that this function only // returns a char* pointer, which isn't guaranteed to be null-terminated. The |
