diff options
| author | gingerBill <bill@gingerbill.org> | 2017-11-19 16:55:24 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2017-11-19 16:55:24 +0000 |
| commit | bcca3bf3221e1b83f804029e53855cbfc2450baf (patch) | |
| tree | 10e9e71a902d9bea4f3dbe33c701b3568daee178 /src/ir_print.cpp | |
| parent | 74aaa3408f7f8d3874c68a20c3c3edf338ec8dfd (diff) | |
Remove target triple from windows
Diffstat (limited to 'src/ir_print.cpp')
| -rw-r--r-- | src/ir_print.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ir_print.cpp b/src/ir_print.cpp index bb8259800..48ca2e1cb 100644 --- a/src/ir_print.cpp +++ b/src/ir_print.cpp @@ -1862,7 +1862,7 @@ void print_llvm_ir(irGen *ir) { GB_ASSERT(word_bits == 64); ir_write_string(f, "target triple = x86_64-apple-macosx10.8\n\n"); } else if (build_context.ODIN_OS == "windows") { - ir_fprintf(f, "target triple = \"x86%s-pc-windows\"\n\n", word_bits == 64 ? "_64" : ""); + // ir_fprintf(f, "target triple = \"x86%s-pc-windows\"\n\n", word_bits == 64 ? "_64" : ""); } ir_print_encoded_local(f, str_lit("..opaque")); |