aboutsummaryrefslogtreecommitdiff
path: root/src/Compilation.zig
diff options
context:
space:
mode:
authorJacob Young <jacobly0@users.noreply.github.com>2023-09-23 06:21:03 -0400
committerJacob Young <jacobly0@users.noreply.github.com>2023-10-01 15:09:52 -0400
commit3bd1b9e15f04128fa3a2c0c3c3969852b7cde9f2 (patch)
tree8845f2091d6aa7755de86427718472e5972337ae /src/Compilation.zig
parentaf40bce08adf232c9f6b9016810a24f7d0260399 (diff)
downloadzig-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.zig3
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;
}