diff options
| author | Brian Anderson <banderson@mozilla.com> | 2013-04-29 18:21:43 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2013-05-06 12:28:51 -0700 |
| commit | 3cafe905a406a2645f8bc7a2a6d50f24817faa4a (patch) | |
| tree | 650bf7f733a6286906c9e40177bc0a9cfb8d8935 /src/libstd | |
| parent | 6e6a4be19d8e6a2cedc66be6cc602db8a1e71acd (diff) | |
| download | rust-3cafe905a406a2645f8bc7a2a6d50f24817faa4a.tar.gz rust-3cafe905a406a2645f8bc7a2a6d50f24817faa4a.zip | |
std: Workaround bustage on incoming. #6122
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/ebml.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstd/ebml.rs b/src/libstd/ebml.rs index 8a4bc823fd8..27c7605eb03 100644 --- a/src/libstd/ebml.rs +++ b/src/libstd/ebml.rs @@ -379,6 +379,7 @@ pub mod reader { fn read_int(&mut self) -> int { let v = doc_as_u64(self.next_doc(EsInt)) as i64; if v > (int::max_value as i64) || v < (int::min_value as i64) { + debug!("FIXME #6122: Removing this makes this function miscompile"); fail!(fmt!("int %? out of range for this architecture", v)); } v as int |
