Skip to content

Commit

Permalink
Test fixes and rebase conflicts, round 2
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcrichton committed Apr 15, 2015
1 parent d3da5a7 commit e053571
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/test/debuginfo/function-prologue-stepping-regular.rs
Expand Up @@ -126,7 +126,6 @@
// lldb-command:continue

#![allow(unused_variables)]
#![feature(old_io)]
#![omit_gdb_pretty_printer_section]

fn immediate_args(a: isize, b: bool, c: f64) {
Expand Down Expand Up @@ -157,7 +156,7 @@ fn assignment(mut a: u64, b: u64, c: f64) {
}

fn function_call(x: u64, y: u64, z: f64) {
std::old_io::stdio::print("Hi!")
println!("Hi!")
}

fn identifier(x: u64, y: u64, z: f64) -> u64 {
Expand Down
Expand Up @@ -9,6 +9,7 @@
// except according to those terms.

// no-prefer-dynamic
// ignore-android

#![feature(rustc_private)]

Expand Down
1 change: 0 additions & 1 deletion src/test/run-pass/drop-flag-skip-sanity-check.rs
Expand Up @@ -63,5 +63,4 @@ fn test() {
// drop-glue should detect the corruption of (at least one of)
// the drop-flags.
}
println!("We should never get here.");
}

0 comments on commit e053571

Please sign in to comment.