diff options
| author | Vadim Chugunov <vadimcn@gmail.com> | 2013-06-14 12:23:42 -0700 |
|---|---|---|
| committer | Vadim Chugunov <vadimcn@gmail.com> | 2013-06-17 08:41:25 -0700 |
| commit | 65dd6218afe62fa36e701ceb27bd4e17ec764acc (patch) | |
| tree | 30780909a53562dfbe623e4a5a00cd00ae23e505 /src/librustc/lib | |
| parent | 62e86e044db030b2ffb7883075720360a8dccdd4 (diff) | |
| download | rust-65dd6218afe62fa36e701ceb27bd4e17ec764acc.tar.gz rust-65dd6218afe62fa36e701ceb27bd4e17ec764acc.zip | |
Fixed remaining issues to pass debug-test/* tests.
Made debugger scripts source line insensitive.
Diffstat (limited to 'src/librustc/lib')
| -rw-r--r-- | src/librustc/lib/llvm.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/librustc/lib/llvm.rs b/src/librustc/lib/llvm.rs index d248627907a..559db3f9b84 100644 --- a/src/librustc/lib/llvm.rs +++ b/src/librustc/lib/llvm.rs @@ -2045,6 +2045,14 @@ pub mod llvm { AlwaysPreserve: bool, Flags: c_uint, ArgNo: c_uint) -> DIVariable; + + #[fast_ffi] + pub unsafe fn LLVMDIBuilderCreateArrayType( + Builder: DIBuilderRef, + Size: c_ulonglong, + AlignInBits: c_ulonglong, + Ty: DIType, + Subscripts: DIArray) -> DIType; #[fast_ffi] pub unsafe fn LLVMDIBuilderCreateVectorType( |
