summaryrefslogtreecommitdiff
path: root/tools/llc/llc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/llc/llc.cpp')
-rw-r--r--tools/llc/llc.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/llc/llc.cpp b/tools/llc/llc.cpp
index 24a3a35fc8..959bdbe36c 100644
--- a/tools/llc/llc.cpp
+++ b/tools/llc/llc.cpp
@@ -164,7 +164,11 @@ int main(int argc, char **argv) {
Out = &std::cout;
} else {
OutputFilename = GetFileNameRoot(InputFilename);
- OutputFilename += ".s";
+
+ if (Arch != CBackend)
+ OutputFilename += ".s";
+ else
+ OutputFilename += ".cbe.c";
if (!Force && std::ifstream(OutputFilename.c_str())) {
// If force is not specified, make sure not to overwrite a file!