Merge remote-tracking branch 'origin/master' into llvm6

This commit is contained in:
Andrew Kelley
2017-11-06 22:41:12 -05:00
19 changed files with 793 additions and 149 deletions

View File

@@ -581,6 +581,14 @@ const char *target_o_file_ext(ZigTarget *target) {
}
}
const char *target_asm_file_ext(ZigTarget *target) {
return ".s";
}
const char *target_llvm_ir_file_ext(ZigTarget *target) {
return ".ll";
}
const char *target_exe_file_ext(ZigTarget *target) {
if (target->os == ZigLLVM_Win32) {
return ".exe";