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 11b2bd5 commit ef7039aCopy full SHA for ef7039a
tests/regression/98-bitwise-operations/07-bitfield63-interval.c
@@ -0,0 +1,14 @@
1
+// PARAM: --enable ana.int.interval
2
+#include <stdint.h>
3
+
4
+// NOCRASH: global initializer for 63-bit bitfield used to crash with Z.Overflow in interval domain
5
+// From: sv-benchmarks/c/intel-tdx-module/tdg_vp_vmcall__requirement__invalid_input_bitmap_havoc_memory.i
6
+struct
7
+{
8
+ uint64_t notify_ept_faults : 1;
9
+ uint64_t reserved_63_1 : 63;
10
+} g;
11
12
+int main() {
13
+ return 0;
14
+}
0 commit comments