@@ -597,7 +597,7 @@ pub const File = struct {
597
597
.mode = determineMode (use_lld , output_mode , link_mode ),
598
598
});
599
599
},
600
- .c , .spirv , .nvptx = > dev .checkAny (&.{ .c_linker , .spirv_linker , .nvptx_linker }),
600
+ .c , .spirv = > dev .checkAny (&.{ .c_linker , .spirv_linker }),
601
601
}
602
602
}
603
603
@@ -670,7 +670,7 @@ pub const File = struct {
670
670
}
671
671
}
672
672
},
673
- .c , .spirv , .nvptx = > dev .checkAny (&.{ .c_linker , .spirv_linker , .nvptx_linker }),
673
+ .c , .spirv = > dev .checkAny (&.{ .c_linker , .spirv_linker }),
674
674
}
675
675
}
676
676
@@ -697,7 +697,6 @@ pub const File = struct {
697
697
.plan9 = > unreachable ,
698
698
.spirv = > unreachable ,
699
699
.c = > unreachable ,
700
- .nvptx = > unreachable ,
701
700
inline else = > | tag | {
702
701
dev .check (tag .devFeature ());
703
702
return @as (* tag .Type (), @fieldParentPtr ("base" , base )).getGlobalSymbol (name , lib_name );
@@ -766,7 +765,7 @@ pub const File = struct {
766
765
}
767
766
768
767
switch (base .tag ) {
769
- .spirv , .nvptx = > {},
768
+ .spirv = > {},
770
769
.goff , .xcoff = > {},
771
770
inline else = > | tag | {
772
771
dev .check (tag .devFeature ());
@@ -901,7 +900,6 @@ pub const File = struct {
901
900
switch (base .tag ) {
902
901
.c = > unreachable ,
903
902
.spirv = > unreachable ,
904
- .nvptx = > unreachable ,
905
903
.wasm = > unreachable ,
906
904
.goff , .xcoff = > unreachable ,
907
905
inline else = > | tag | {
@@ -921,7 +919,6 @@ pub const File = struct {
921
919
switch (base .tag ) {
922
920
.c = > unreachable ,
923
921
.spirv = > unreachable ,
924
- .nvptx = > unreachable ,
925
922
.wasm = > unreachable ,
926
923
.goff , .xcoff = > unreachable ,
927
924
inline else = > | tag | {
@@ -935,7 +932,6 @@ pub const File = struct {
935
932
switch (base .tag ) {
936
933
.c = > unreachable ,
937
934
.spirv = > unreachable ,
938
- .nvptx = > unreachable ,
939
935
.wasm = > unreachable ,
940
936
.goff , .xcoff = > unreachable ,
941
937
inline else = > | tag | {
@@ -953,7 +949,6 @@ pub const File = struct {
953
949
switch (base .tag ) {
954
950
.plan9 ,
955
951
.spirv ,
956
- .nvptx ,
957
952
.goff ,
958
953
.xcoff ,
959
954
= > {},
@@ -1251,7 +1246,6 @@ pub const File = struct {
1251
1246
wasm ,
1252
1247
spirv ,
1253
1248
plan9 ,
1254
- nvptx ,
1255
1249
goff ,
1256
1250
xcoff ,
1257
1251
@@ -1264,7 +1258,6 @@ pub const File = struct {
1264
1258
.wasm = > Wasm ,
1265
1259
.spirv = > SpirV ,
1266
1260
.plan9 = > Plan9 ,
1267
- .nvptx = > NvPtx ,
1268
1261
.goff = > Goff ,
1269
1262
.xcoff = > Xcoff ,
1270
1263
};
@@ -1279,7 +1272,6 @@ pub const File = struct {
1279
1272
.plan9 = > .plan9 ,
1280
1273
.c = > .c ,
1281
1274
.spirv = > .spirv ,
1282
- .nvptx = > .nvptx ,
1283
1275
.goff = > .goff ,
1284
1276
.xcoff = > .xcoff ,
1285
1277
.hex = > @panic ("TODO implement hex object format" ),
@@ -1386,7 +1378,6 @@ pub const File = struct {
1386
1378
pub const MachO = @import ("link/MachO.zig" );
1387
1379
pub const SpirV = @import ("link/SpirV.zig" );
1388
1380
pub const Wasm = @import ("link/Wasm.zig" );
1389
- pub const NvPtx = @import ("link/NvPtx.zig" );
1390
1381
pub const Goff = @import ("link/Goff.zig" );
1391
1382
pub const Xcoff = @import ("link/Xcoff.zig" );
1392
1383
pub const Dwarf = @import ("link/Dwarf.zig" );
0 commit comments