From 3bd5fac76f4fcc229d054ef46d5040de9abaa9f4 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 14 Dec 2005 22:01:07 +0000 Subject: [PATCH] Fix printing of the instructions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24714 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/bugpoint/Miscompilation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/bugpoint/Miscompilation.cpp b/tools/bugpoint/Miscompilation.cpp index dfe67de0cd0..cf4cc7e748c 100644 --- a/tools/bugpoint/Miscompilation.cpp +++ b/tools/bugpoint/Miscompilation.cpp @@ -862,7 +862,7 @@ bool BugDriver::debugCodeGenerator() { std::cout << " gcc " << SharedObject << " " << TestModuleBC << ".s -o " << TestModuleBC << ".exe"; #if defined (HAVE_LINK_R) - std::cout << "-Wl,-R."; + std::cout << " -Wl,-R."; #endif std::cout << "\n"; std::cout << " " << TestModuleBC << ".exe";