Skip to content

Commit cc397e5

Browse files
committed
---
yaml --- r: 209951 b: refs/heads/try c: a249910 h: refs/heads/master i: 209949: 979a19f 209947: ec14154 209943: 0dd1388 209935: 0955f35 209919: b25de6b v: v3
1 parent 8cc2ec3 commit cc397e5

File tree

7 files changed

+3
-68
lines changed

7 files changed

+3
-68
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: 3e561f05c00cd180ec02db4ccab2840a4aba93d2
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: ba0e1cd8147d452c356aacb29fb87568ca26f111
5-
refs/heads/try: bba18fec45b0764c1c65b8f0d3ea1fb50ad8a57b
5+
refs/heads/try: a249910d3417160e2f871bc5a5200bec6b11f518
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
88
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596

branches/try/configure

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -659,10 +659,9 @@ if [ -n "$CFG_ENABLE_DEBUG" ]; then
659659
CFG_DISABLE_OPTIMIZE=1
660660
CFG_DISABLE_OPTIMIZE_CXX=1
661661
fi
662+
CFG_ENABLE_LLVM_ASSERTIONS=1
662663
CFG_ENABLE_DEBUG_ASSERTIONS=1
663664
CFG_ENABLE_DEBUG_JEMALLOC=1
664-
CFG_ENABLE_DEBUGINFO=1
665-
CFG_ENABLE_LLVM_ASSERTIONS=1
666665
fi
667666

668667
# OK, now write the debugging options

branches/try/src/libcollections/vec.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -116,11 +116,7 @@ static MAX_MEMORY_SIZE: usize = isize::MAX as usize;
116116
/// stack.push(2);
117117
/// stack.push(3);
118118
///
119-
/// loop {
120-
/// let top = match stack.pop() {
121-
/// None => break, // empty
122-
/// Some(x) => x,
123-
/// };
119+
/// while let Some(top) = stack.pop() {
124120
/// // Prints 3, 2, 1
125121
/// println!("{}", top);
126122
/// }

branches/try/src/librustc_trans/trans/adt.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -414,10 +414,6 @@ fn find_discr_field_candidate<'tcx>(tcx: &ty::ctxt<'tcx>,
414414
assert_eq!(nonzero_fields.len(), 1);
415415
let nonzero_field = ty::lookup_field_type(tcx, did, nonzero_fields[0].id, substs);
416416
match nonzero_field.sty {
417-
ty::ty_ptr(ty::mt { ty, .. }) if !type_is_sized(tcx, ty) => {
418-
path.push_all(&[0, FAT_PTR_ADDR]);
419-
Some(path)
420-
},
421417
ty::ty_ptr(..) | ty::ty_int(..) | ty::ty_uint(..) => {
422418
path.push(0);
423419
Some(path)

branches/try/src/test/compile-fail/issue-22673.rs

Lines changed: 0 additions & 16 deletions
This file was deleted.

branches/try/src/test/compile-fail/issue-23253.rs

Lines changed: 0 additions & 16 deletions
This file was deleted.

branches/try/src/test/run-pass/issue-23433.rs

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)