| author | |
| committer | |
| log | 92517fbd625b1f6d6162ce2875ef167701b99733 |
| tree | 36c371b96cb0868e5b6b77d2b566350cfef5b809 |
| parent | af370a69cd16305e2cd14b584187e84e30bd065f |
| signature |
1 files changed, 1 insertions(+), 2 deletions(-)
src/codegen/llvm.zig+1-2| ... | ... | @@ -1284,8 +1284,7 @@ pub const Object = struct { |
| 1284 | 1284 | .large => .Large, |
| 1285 | 1285 | }; |
| 1286 | 1286 | |
| 1287 | // TODO handle float ABI better- it should depend on the ABI portion of std.Target | |
| 1288 | const float_abi: llvm.ABIType = .Default; | |
| 1287 | const float_abi: llvm.ABIType = if (comp.root_mod.resolved_target.result.floatAbi() == .hard) .Hard else .Soft; | |
| 1289 | 1288 | |
| 1290 | 1289 | var target_machine = llvm.TargetMachine.create( |
| 1291 | 1290 | target, |