We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5043ad commit 1253d59Copy full SHA for 1253d59
lib/std/target.zig
@@ -2236,15 +2236,22 @@ pub const Target = struct {
2236
.longdouble => return 128,
2237
},
2238
2239
+ .ps4, .ps5 => switch (c_type) {
2240
+ .char => return 8,
2241
+ .short, .ushort => return 16,
2242
+ .int, .uint, .float => return 32,
2243
+ .long, .ulong => return 64,
2244
+ .longlong, .ulonglong, .double => return 64,
2245
+ .longdouble => return 80,
2246
+ },
2247
+
2248
.cloudabi,
2249
.kfreebsd,
2250
.lv2,
2251
.zos,
2252
.rtems,
2253
.nacl,
2254
.aix,
- .ps4,
- .ps5,
2255
.elfiamcu,
2256
.mesa3d,
2257
.contiki,
0 commit comments