diff options
| author | bors <bors@rust-lang.org> | 2014-08-30 19:51:25 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-08-30 19:51:25 +0000 |
| commit | f2973665935161bb2b2eca3f41c33a4fd2fe82c4 (patch) | |
| tree | 285aa850b2763a426fdd2a874d100261de3d7024 /src/libstd/rt | |
| parent | cbacdbc5f3bc4f401a96177df8efd2eb765e8799 (diff) | |
| parent | d15d55973946f8f582ba69b1789b5b5d35da5b2d (diff) | |
| download | rust-f2973665935161bb2b2eca3f41c33a4fd2fe82c4.tar.gz rust-f2973665935161bb2b2eca3f41c33a4fd2fe82c4.zip | |
auto merge of #16859 : alexcrichton/rust/snapshots, r=huonw
Diffstat (limited to 'src/libstd/rt')
| -rw-r--r-- | src/libstd/rt/backtrace.rs | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/libstd/rt/backtrace.rs b/src/libstd/rt/backtrace.rs index aadc9178e1a..cf99efd24e6 100644 --- a/src/libstd/rt/backtrace.rs +++ b/src/libstd/rt/backtrace.rs @@ -701,30 +701,6 @@ mod imp { static IMAGE_FILE_MACHINE_IA64: libc::DWORD = 0x0200; static IMAGE_FILE_MACHINE_AMD64: libc::DWORD = 0x8664; - #[cfg(stage0)] - #[packed] - struct SYMBOL_INFO { - SizeOfStruct: libc::c_ulong, - TypeIndex: libc::c_ulong, - Reserved: [u64, ..2], - Index: libc::c_ulong, - Size: libc::c_ulong, - ModBase: u64, - Flags: libc::c_ulong, - Value: u64, - Address: u64, - Register: libc::c_ulong, - Scope: libc::c_ulong, - Tag: libc::c_ulong, - NameLen: libc::c_ulong, - MaxNameLen: libc::c_ulong, - // note that windows has this as 1, but it basically just means that - // the name is inline at the end of the struct. For us, we just bump - // the struct size up to MAX_SYM_NAME. - Name: [libc::c_char, ..MAX_SYM_NAME], - } - - #[cfg(not(stage0))] #[repr(C, packed)] struct SYMBOL_INFO { SizeOfStruct: libc::c_ulong, |
