diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2019-10-24 02:25:22 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-10-24 02:25:22 -0400 |
| commit | 345042ecbc7fb645fd17b69df4e57ffefa5be5a5 (patch) | |
| tree | 457ea0157f0f42dccf905593426154be8682812b /src-self-hosted/target.zig | |
| parent | ef62452363de75240b21299e9f80b4851433faaa (diff) | |
| parent | 60cd11bd4b48e4dfdf11d1f25cb1ee842a49ee1d (diff) | |
| download | zig-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/target.zig')
| -rw-r--r-- | src-self-hosted/target.zig | 2 |
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, |
