Skip to content

Commit 203faee

Browse files
committed
---
yaml --- r: 60049 b: refs/heads/master c: 38a6a7a h: refs/heads/master i: 60047: 868bb47 v: v3
1 parent 8334eee commit 203faee

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 154f3b00e0617e379d005b3aa7f41e8f1bea7bd8
2+
refs/heads/master: 38a6a7a394fa55235ff0b3cab4d0903d7ba5a5a3
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 2d28d645422c1617be58c8ca7ad9a457264ca850
55
refs/heads/try: c50a9d5b664478e533ba1d1d353213d70c8ad589

trunk/src/libstd/ebml.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -379,6 +379,7 @@ pub mod reader {
379379
fn read_int(&mut self) -> int {
380380
let v = doc_as_u64(self.next_doc(EsInt)) as i64;
381381
if v > (int::max_value as i64) || v < (int::min_value as i64) {
382+
debug!("FIXME #6122: Removing this makes this function miscompile");
382383
fail!(fmt!("int %? out of range for this architecture", v));
383384
}
384385
v as int

0 commit comments

Comments
 (0)