Skip to content

Commit d9df48b

Browse files
committed
Address CR comments for Sema test
1 parent f9aa4ef commit d9df48b

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

clang/test/SemaSYCL/sycl-intelfpga.cpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,10 @@
1414
signed _BitInt(2049) foo(signed _BitInt(2049) a, signed _BitInt(2049) b) {
1515
return a / b;
1616
}
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

Comments
 (0)