aboutsummaryrefslogtreecommitdiff
path: root/src-self-hosted
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2019-10-24 02:25:22 -0400
committerGitHub <noreply@github.com>2019-10-24 02:25:22 -0400
commit345042ecbc7fb645fd17b69df4e57ffefa5be5a5 (patch)
tree457ea0157f0f42dccf905593426154be8682812b /src-self-hosted
parentef62452363de75240b21299e9f80b4851433faaa (diff)
parent60cd11bd4b48e4dfdf11d1f25cb1ee842a49ee1d (diff)
downloadzig-345042ecbc7fb645fd17b69df4e57ffefa5be5a5.tar.gz
zig-345042ecbc7fb645fd17b69df4e57ffefa5be5a5.zip
Merge pull request #3519 from ziglang/move-builtin-types
move types from builtin to std
Diffstat (limited to 'src-self-hosted')
-rw-r--r--src-self-hosted/target.zig2
1 files changed, 2 insertions, 0 deletions
diff --git a/src-self-hosted/target.zig b/src-self-hosted/target.zig
index 15f09e8da9..c62e5af9dd 100644
--- a/src-self-hosted/target.zig
+++ b/src-self-hosted/target.zig
@@ -3,6 +3,8 @@ const builtin = @import("builtin");
const llvm = @import("llvm.zig");
const CInt = @import("c_int.zig").CInt;
+// TODO delete this file and use std.Target
+
pub const FloatAbi = enum {
Hard,
Soft,