diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-01-31 14:56:35 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2023-01-31 15:09:35 -0700 |
| commit | 2f5892671e49850070064f689a7d8f93d6a7a0dd (patch) | |
| tree | f237a378b22789899fe87fba6b39884c38e5ad12 /src/codegen/c.zig | |
| parent | 90e48d4b3469fb4f8dd2f3b52e05453029d45fdc (diff) | |
| download | zig-2f5892671e49850070064f689a7d8f93d6a7a0dd.tar.gz zig-2f5892671e49850070064f689a7d8f93d6a7a0dd.zip | |
move compiler's CType logic to std.Target
This API only depends on std.Target and is extremely useful in build
scripts when populating configure files.
Diffstat (limited to 'src/codegen/c.zig')
| -rw-r--r-- | src/codegen/c.zig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/codegen/c.zig b/src/codegen/c.zig index eb0ae1b1f6..2f721e1b4b 100644 --- a/src/codegen/c.zig +++ b/src/codegen/c.zig @@ -16,7 +16,6 @@ const trace = @import("../tracy.zig").trace; const LazySrcLoc = Module.LazySrcLoc; const Air = @import("../Air.zig"); const Liveness = @import("../Liveness.zig"); -const CType = @import("../type.zig").CType; const target_util = @import("../target.zig"); const libcFloatPrefix = target_util.libcFloatPrefix; |
