diff options
| author | Tadeo Kondrak <me@tadeo.ca> | 2020-04-27 23:46:09 -0600 |
|---|---|---|
| committer | Tadeo Kondrak <me@tadeo.ca> | 2020-04-28 00:47:13 -0600 |
| commit | f977155fdbee95a68799ec3a2199db6c79487125 (patch) | |
| tree | 769ff7293bed855213e6e66cbcfd48a626cee9f5 /lib/std/special/compiler_rt.zig | |
| parent | ee5b358d71d544b06070681b245c9f1bad8b1a99 (diff) | |
| download | zig-f977155fdbee95a68799ec3a2199db6c79487125.tar.gz zig-f977155fdbee95a68799ec3a2199db6c79487125.zip | |
@Vector -> std.meta.Vector
Diffstat (limited to 'lib/std/special/compiler_rt.zig')
| -rw-r--r-- | lib/std/special/compiler_rt.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/special/compiler_rt.zig b/lib/std/special/compiler_rt.zig index aa94d29b11..01c3a20389 100644 --- a/lib/std/special/compiler_rt.zig +++ b/lib/std/special/compiler_rt.zig @@ -291,7 +291,7 @@ comptime { @export(@import("compiler_rt/umodti3.zig").__umodti3, .{ .name = "__umodti3", .linkage = linkage }); }, .x86_64 => { - // The "ti" functions must use @Vector(2, u64) parameter types to adhere to the ABI + // The "ti" functions must use Vector(2, u64) parameter types to adhere to the ABI // that LLVM expects compiler-rt to have. @export(@import("compiler_rt/divti3.zig").__divti3_windows_x86_64, .{ .name = "__divti3", .linkage = linkage }); @export(@import("compiler_rt/modti3.zig").__modti3_windows_x86_64, .{ .name = "__modti3", .linkage = linkage }); |
