mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-15 23:31:37 +00:00
When the user runs 'llc foo.bc -march=c', write the output to "foo.cbe.c", not
to "foo.s". git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11485 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e42cde2a14
commit
74661c838c
@ -164,7 +164,11 @@ int main(int argc, char **argv) {
|
|||||||
Out = &std::cout;
|
Out = &std::cout;
|
||||||
} else {
|
} else {
|
||||||
OutputFilename = GetFileNameRoot(InputFilename);
|
OutputFilename = GetFileNameRoot(InputFilename);
|
||||||
OutputFilename += ".s";
|
|
||||||
|
if (Arch != CBackend)
|
||||||
|
OutputFilename += ".s";
|
||||||
|
else
|
||||||
|
OutputFilename += ".cbe.c";
|
||||||
|
|
||||||
if (!Force && std::ifstream(OutputFilename.c_str())) {
|
if (!Force && std::ifstream(OutputFilename.c_str())) {
|
||||||
// If force is not specified, make sure not to overwrite a file!
|
// If force is not specified, make sure not to overwrite a file!
|
||||||
|
Loading…
x
Reference in New Issue
Block a user