Commit 545830c0ff

Andrew Kelley <andrew@ziglang.org>
2021-04-05 01:10:54
LLVM sub-arch triple: remove TODO comment
See #6542 for more details. Upon investigation, this change is not needed.
1 parent 0fee4b5
Changed files (1)
src
codegen
src/codegen/llvm.zig
@@ -74,7 +74,6 @@ pub fn targetTriple(allocator: *Allocator, target: std.Target) ![:0]u8 {
         .spirv32 => return error.LLVMBackendDoesNotSupportSPIRV,
         .spirv64 => return error.LLVMBackendDoesNotSupportSPIRV,
     };
-    // TODO Add a sub-arch for some architectures depending on CPU features.
 
     const llvm_os = switch (target.os.tag) {
         .freestanding => "unknown",