mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-02 15:51:54 +00:00
The llc -f flag was removed.
llvm-svn: 102670
This commit is contained in:
parent
0a6811070b
commit
31e338dba8
@ -1000,7 +1000,7 @@ bool BugDriver::debugCodeGenerator(std::string *Error) {
|
||||
if (isExecutingJIT()) {
|
||||
outs() << " lli -load " << SharedObject << " " << TestModuleBC.str();
|
||||
} else {
|
||||
outs() << " llc -f " << TestModuleBC.str() << " -o " << TestModuleBC.str()
|
||||
outs() << " llc " << TestModuleBC.str() << " -o " << TestModuleBC.str()
|
||||
<< ".s\n";
|
||||
outs() << " gcc " << SharedObject << " " << TestModuleBC.str()
|
||||
<< ".s -o " << TestModuleBC.str() << ".exe";
|
||||
|
@ -546,7 +546,6 @@ GCC::FileType CBE::OutputCode(const std::string &Bitcode,
|
||||
LLCArgs.push_back("-o");
|
||||
LLCArgs.push_back(OutputCFile.c_str()); // Output to the C file
|
||||
LLCArgs.push_back("-march=c"); // Output C language
|
||||
LLCArgs.push_back("-f"); // Overwrite as necessary...
|
||||
LLCArgs.push_back(Bitcode.c_str()); // This is the input bitcode
|
||||
LLCArgs.push_back(0);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user