2016-11-17 14:28:38 -05:00
|
|
|
// This test case tests the incremental compilation hash (ICH) implementation
|
|
|
|
// for `while` loops.
|
|
|
|
|
|
|
|
// The general pattern followed here is: Change one thing between rev1 and rev2
|
|
|
|
// and make sure that the hash has changed, then change nothing between rev2 and
|
|
|
|
// rev3 and make sure that the hash has not changed.
|
|
|
|
|
2018-04-02 13:20:06 +02:00
|
|
|
// compile-pass
|
2016-11-17 14:28:38 -05:00
|
|
|
// revisions: cfail1 cfail2 cfail3
|
2017-12-04 12:47:16 +01:00
|
|
|
// compile-flags: -Z query-dep-graph -Zincremental-ignore-spans
|
2016-11-17 14:28:38 -05:00
|
|
|
|
|
|
|
#![allow(warnings)]
|
|
|
|
#![feature(rustc_attrs)]
|
|
|
|
#![crate_type="rlib"]
|
|
|
|
|
|
|
|
|
|
|
|
// Change loop body ------------------------------------------------------------
|
|
|
|
#[cfg(cfail1)]
|
2017-12-05 15:01:49 -08:00
|
|
|
pub fn change_loop_body() {
|
2016-11-17 14:28:38 -05:00
|
|
|
let mut _x = 0;
|
|
|
|
while true {
|
|
|
|
_x = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(cfail1))]
|
2019-03-20 16:06:09 +01:00
|
|
|
#[rustc_clean(cfg="cfail2", except="HirBody, mir_built, optimized_mir")]
|
2017-12-05 15:01:49 -08:00
|
|
|
#[rustc_clean(cfg="cfail3")]
|
|
|
|
pub fn change_loop_body() {
|
2016-11-17 14:28:38 -05:00
|
|
|
let mut _x = 0;
|
|
|
|
while true {
|
|
|
|
_x = 2;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Change loop body ------------------------------------------------------------
|
|
|
|
#[cfg(cfail1)]
|
2017-12-05 15:01:49 -08:00
|
|
|
pub fn change_loop_condition() {
|
2016-11-17 14:28:38 -05:00
|
|
|
let mut _x = 0;
|
|
|
|
while true {
|
|
|
|
_x = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(cfail1))]
|
2019-03-20 16:06:09 +01:00
|
|
|
#[rustc_clean(cfg="cfail2", except="HirBody, mir_built, optimized_mir")]
|
2017-12-05 15:01:49 -08:00
|
|
|
#[rustc_clean(cfg="cfail3")]
|
|
|
|
pub fn change_loop_condition() {
|
2016-11-17 14:28:38 -05:00
|
|
|
let mut _x = 0;
|
|
|
|
while false {
|
|
|
|
_x = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Add break -------------------------------------------------------------------
|
|
|
|
#[cfg(cfail1)]
|
2017-12-05 15:01:49 -08:00
|
|
|
pub fn add_break() {
|
2016-11-17 14:28:38 -05:00
|
|
|
let mut _x = 0;
|
|
|
|
while true {
|
|
|
|
_x = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(cfail1))]
|
2019-03-29 17:05:40 +01:00
|
|
|
#[rustc_clean(cfg="cfail2", except="HirBody, mir_built, optimized_mir, typeck_tables_of")]
|
2017-12-05 15:01:49 -08:00
|
|
|
#[rustc_clean(cfg="cfail3")]
|
|
|
|
pub fn add_break() {
|
2016-11-17 14:28:38 -05:00
|
|
|
let mut _x = 0;
|
|
|
|
while true {
|
|
|
|
_x = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Add loop label --------------------------------------------------------------
|
|
|
|
#[cfg(cfail1)]
|
2017-12-05 15:01:49 -08:00
|
|
|
pub fn add_loop_label() {
|
2016-11-17 14:28:38 -05:00
|
|
|
let mut _x = 0;
|
|
|
|
while true {
|
|
|
|
_x = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(cfail1))]
|
2017-12-05 15:01:49 -08:00
|
|
|
#[rustc_clean(cfg="cfail2", except="HirBody")]
|
|
|
|
#[rustc_clean(cfg="cfail3")]
|
|
|
|
pub fn add_loop_label() {
|
2016-11-17 14:28:38 -05:00
|
|
|
let mut _x = 0;
|
|
|
|
'label: while true {
|
|
|
|
_x = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Add loop label to break -----------------------------------------------------
|
|
|
|
#[cfg(cfail1)]
|
2017-12-05 15:01:49 -08:00
|
|
|
pub fn add_loop_label_to_break() {
|
2016-11-17 14:28:38 -05:00
|
|
|
let mut _x = 0;
|
|
|
|
'label: while true {
|
|
|
|
_x = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(cfail1))]
|
2017-12-05 15:01:49 -08:00
|
|
|
#[rustc_clean(cfg="cfail2", except="HirBody")]
|
|
|
|
#[rustc_clean(cfg="cfail3")]
|
|
|
|
pub fn add_loop_label_to_break() {
|
2016-11-17 14:28:38 -05:00
|
|
|
let mut _x = 0;
|
|
|
|
'label: while true {
|
|
|
|
_x = 1;
|
|
|
|
break 'label;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Change break label ----------------------------------------------------------
|
|
|
|
#[cfg(cfail1)]
|
2017-12-05 15:01:49 -08:00
|
|
|
pub fn change_break_label() {
|
2016-11-17 14:28:38 -05:00
|
|
|
let mut _x = 0;
|
|
|
|
'outer: while true {
|
|
|
|
'inner: while true {
|
|
|
|
_x = 1;
|
|
|
|
break 'inner;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(cfail1))]
|
2019-03-20 16:06:09 +01:00
|
|
|
#[rustc_clean(cfg="cfail2", except="HirBody, mir_built, optimized_mir")]
|
2017-12-05 15:01:49 -08:00
|
|
|
#[rustc_clean(cfg="cfail3")]
|
|
|
|
pub fn change_break_label() {
|
2016-11-17 14:28:38 -05:00
|
|
|
let mut _x = 0;
|
|
|
|
'outer: while true {
|
|
|
|
'inner: while true {
|
|
|
|
_x = 1;
|
|
|
|
break 'outer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Add loop label to continue --------------------------------------------------
|
|
|
|
#[cfg(cfail1)]
|
2017-12-05 15:01:49 -08:00
|
|
|
pub fn add_loop_label_to_continue() {
|
2016-11-17 14:28:38 -05:00
|
|
|
let mut _x = 0;
|
|
|
|
'label: while true {
|
|
|
|
_x = 1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(cfail1))]
|
2017-12-05 15:01:49 -08:00
|
|
|
#[rustc_clean(cfg="cfail2", except="HirBody")]
|
|
|
|
#[rustc_clean(cfg="cfail3")]
|
|
|
|
pub fn add_loop_label_to_continue() {
|
2016-11-17 14:28:38 -05:00
|
|
|
let mut _x = 0;
|
|
|
|
'label: while true {
|
|
|
|
_x = 1;
|
|
|
|
continue 'label;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Change continue label ----------------------------------------------------------
|
|
|
|
#[cfg(cfail1)]
|
2017-12-05 15:01:49 -08:00
|
|
|
pub fn change_continue_label() {
|
2016-11-17 14:28:38 -05:00
|
|
|
let mut _x = 0;
|
|
|
|
'outer: while true {
|
|
|
|
'inner: while true {
|
|
|
|
_x = 1;
|
|
|
|
continue 'inner;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(cfail1))]
|
2019-03-20 16:06:09 +01:00
|
|
|
#[rustc_clean(cfg="cfail2", except="HirBody, mir_built")]
|
2017-12-05 15:01:49 -08:00
|
|
|
#[rustc_clean(cfg="cfail3")]
|
|
|
|
pub fn change_continue_label() {
|
2016-11-17 14:28:38 -05:00
|
|
|
let mut _x = 0;
|
|
|
|
'outer: while true {
|
|
|
|
'inner: while true {
|
|
|
|
_x = 1;
|
|
|
|
continue 'outer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Change continue to break ----------------------------------------------------
|
|
|
|
#[cfg(cfail1)]
|
2017-12-05 15:01:49 -08:00
|
|
|
pub fn change_continue_to_break() {
|
2016-11-17 14:28:38 -05:00
|
|
|
let mut _x = 0;
|
|
|
|
while true {
|
|
|
|
_x = 1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(cfail1))]
|
2019-03-20 16:06:09 +01:00
|
|
|
#[rustc_clean(cfg="cfail2", except="HirBody, mir_built, optimized_mir")]
|
2017-12-05 15:01:49 -08:00
|
|
|
#[rustc_clean(cfg="cfail3")]
|
|
|
|
pub fn change_continue_to_break() {
|
2016-11-17 14:28:38 -05:00
|
|
|
let mut _x = 0;
|
|
|
|
while true {
|
|
|
|
_x = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|