| ... | ... | @@ -228,14 +228,14 @@ bool ZigLLVMTargetMachineEmitToFile(LLVMTargetMachineRef targ_machine_ref, LLVMM |
| 228 | 228 | PMBuilder->populateModulePassManager(MPM); |
| 229 | 229 | |
| 230 | 230 | // Set output pass. |
| 231 | | TargetMachine::CodeGenFileType ft; |
| 231 | CodeGenFileType ft; |
| 232 | 232 | if (output_type != ZigLLVM_EmitLLVMIr) { |
| 233 | 233 | switch (output_type) { |
| 234 | 234 | case ZigLLVM_EmitAssembly: |
| 235 | | ft = TargetMachine::CGFT_AssemblyFile; |
| 235 | ft = CGFT_AssemblyFile; |
| 236 | 236 | break; |
| 237 | 237 | case ZigLLVM_EmitBinary: |
| 238 | | ft = TargetMachine::CGFT_ObjectFile; |
| 238 | ft = CGFT_ObjectFile; |
| 239 | 239 | break; |
| 240 | 240 | default: |
| 241 | 241 | abort(); |