diff options
| author | Robin Voetter <robin@voetter.nl> | 2023-08-26 11:32:37 +0200 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2023-09-23 12:36:44 -0700 |
| commit | 79f7481575005f9f63b5b3be8dd89b92b11b9c77 (patch) | |
| tree | ab44253bc9180d8947322504c78ddc5c91e01b75 /src/codegen | |
| parent | 865b2e259bf78dbf1d4c1051b5fff68b90bca65f (diff) | |
| download | zig-79f7481575005f9f63b5b3be8dd89b92b11b9c77.tar.gz zig-79f7481575005f9f63b5b3be8dd89b92b11b9c77.zip | |
spirv: disable failing tests
Diffstat (limited to 'src/codegen')
| -rw-r--r-- | src/codegen/spirv.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/codegen/spirv.zig b/src/codegen/spirv.zig index 33a864ea0a..22d7560806 100644 --- a/src/codegen/spirv.zig +++ b/src/codegen/spirv.zig @@ -1242,6 +1242,7 @@ pub const DeclGen = struct { }, .Int => { const int_info = ty.intInfo(mod); + // TODO: Integers in OpenCL kernels are always unsigned. return try self.intType(int_info.signedness, int_info.bits); }, .Enum => { |
