diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2023-09-23 06:21:03 -0400 |
|---|---|---|
| committer | Jacob Young <jacobly0@users.noreply.github.com> | 2023-10-01 15:09:52 -0400 |
| commit | 3bd1b9e15f04128fa3a2c0c3c3969852b7cde9f2 (patch) | |
| tree | 8845f2091d6aa7755de86427718472e5972337ae /src/Compilation.zig | |
| parent | af40bce08adf232c9f6b9016810a24f7d0260399 (diff) | |
| download | zig-3bd1b9e15f04128fa3a2c0c3c3969852b7cde9f2.tar.gz zig-3bd1b9e15f04128fa3a2c0c3c3969852b7cde9f2.zip | |
x86_64: implement and test unary float builtins
Diffstat (limited to 'src/Compilation.zig')
| -rw-r--r-- | src/Compilation.zig | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Compilation.zig b/src/Compilation.zig index 71dff4a442..8d157d245f 100644 --- a/src/Compilation.zig +++ b/src/Compilation.zig @@ -1871,8 +1871,7 @@ pub fn create(gpa: Allocator, options: InitOptions) !*Compilation { comp.job_queued_compiler_rt_lib = true; } else if (options.output_mode != .Obj) { log.debug("queuing a job to build compiler_rt_obj", .{}); - // If build-obj with -fcompiler-rt is requested, that is handled specially - // elsewhere. In this case we are making a static library, so we ask + // In this case we are making a static library, so we ask // for a compiler-rt object to put in it. comp.job_queued_compiler_rt_obj = true; } |
