about summary refs log tree commit diff
path: root/src/test/debuginfo/function-arg-initialization.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/debuginfo/function-arg-initialization.rs')
-rw-r--r--src/test/debuginfo/function-arg-initialization.rs22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/test/debuginfo/function-arg-initialization.rs b/src/test/debuginfo/function-arg-initialization.rs
index d611e4a65a6..a1ca59caa33 100644
--- a/src/test/debuginfo/function-arg-initialization.rs
+++ b/src/test/debuginfo/function-arg-initialization.rs
@@ -10,15 +10,15 @@
 
 // min-lldb-version: 310
 
-// This test case checks if function arguments already have the correct value when breaking at the
-// first line of the function, that is if the function prologue has already been executed at the
-// first line. Note that because of the __morestack part of the prologue GDB incorrectly breaks at
-// before the arguments have been properly loaded when setting the breakpoint via the function name.
+// This test case checks if function arguments already have the correct value
+// when breaking at the first line of the function, that is if the function
+// prologue has already been executed at the first line. Note that because of
+// the __morestack part of the prologue GDB incorrectly breaks at before the
+// arguments have been properly loaded when setting the breakpoint via the
+// function name.
 
 // compile-flags:-g
 
-#![feature(old_io)]
-
 // === GDB TESTS ===================================================================================
 
 // gdb-command:run
@@ -227,7 +227,7 @@
 #![omit_gdb_pretty_printer_section]
 
 fn immediate_args(a: isize, b: bool, c: f64) {
-    ::std::old_io::print("") // #break
+    println!("") // #break
 }
 
 struct BigStruct {
@@ -242,21 +242,21 @@ struct BigStruct {
 }
 
 fn non_immediate_args(a: BigStruct, b: BigStruct) {
-    ::std::old_io::print("") // #break
+    println!("") // #break
 }
 
 fn binding(a: i64, b: u64, c: f64) {
     let x = 0; // #break
-    ::std::old_io::print("")
+    println!("")
 }
 
 fn assignment(mut a: u64, b: u64, c: f64) {
     a = b; // #break
-    ::std::old_io::print("")
+    println!("")
 }
 
 fn function_call(x: u64, y: u64, z: f64) {
-    std::old_io::stdio::print("Hi!") // #break
+    println!("Hi!") // #break
 }
 
 fn identifier(x: u64, y: u64, z: f64) -> u64 {