From 94c0d475bc24b132efb08ad1ca1b8b992078b82b Mon Sep 17 00:00:00 2001 From: Matt Ickstadt Date: Sat, 12 Nov 2016 15:30:57 -0600 Subject: [PATCH] Use correct lib name in qc test failure --- library/compiler-builtins/src/qc.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/library/compiler-builtins/src/qc.rs b/library/compiler-builtins/src/qc.rs index 74fcb42c8592..5dbc56f24a8f 100644 --- a/library/compiler-builtins/src/qc.rs +++ b/library/compiler-builtins/src/qc.rs @@ -281,9 +281,9 @@ macro_rules! check { print!("{} - Args: ", stringify!($name)); $(print!("{:?} ", $arg);)* print!("\n"); - println!(" rustc-builtins: {:?}", my_answer); - println!(" compiler_rt: {:?}", compiler_rt_answer); - println!(" gcc_s: {:?}", gcc_s_answer); + println!(" compiler-builtins: {:?}", my_answer); + println!(" compiler_rt: {:?}", compiler_rt_answer); + println!(" gcc_s: {:?}", gcc_s_answer); }; if my_answer != compiler_rt_answer {