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 f9aa4ef commit d9df48bCopy full SHA for d9df48b
clang/test/SemaSYCL/sycl-intelfpga.cpp
@@ -14,3 +14,10 @@
14
signed _BitInt(2049) foo(signed _BitInt(2049) a, signed _BitInt(2049) b) {
15
return a / b;
16
}
17
+// device-error@+4 3{{signed _BitInt of bit sizes greater than 128 not supported}}
18
+// host-error@+3 3{{signed _BitInt of bit sizes greater than 128 not supported}}
19
+// device-intelfpga-no-diagnostic@+2
20
+// host-intelfpga-no-diagnostic@+1
21
+signed _BitInt(215) foo(signed _BitInt(215) a, signed _BitInt(215) b) {
22
+ return a + b;
23
+}
0 commit comments