Skip to content

Commit a13b7e1

Browse files
committed
Update CIL for _Static_assert checking and hasAttribute optimization
1 parent b909b87 commit a13b7e1

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

goblint.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ dev-repo: "git+https://github.com/goblint/analyzer.git"
102102
x-maintenance-intent: ["(latest)" "(latest).(latest-1)"] # also keep previous minor version (with two releases per year, always keep a SV-COMP release)
103103
available: os-family != "bsd" & os-distribution != "alpine" & (arch != "arm64" | os = "macos")
104104
pin-depends: [
105-
[ "goblint-cil.2.0.9" "git+https://github.com/goblint/cil.git#0913d6abce40bfda6b68a61b035c8a53ffb3c6a4" ]
105+
[ "goblint-cil.2.0.9" "git+https://github.com/goblint/cil.git#2243aad0e34cb59b7d2d18415ab88a7767c108b7" ]
106106
# pinned for stability (https://github.com/goblint/analyzer/issues/1520), remove after new apron release
107107
[ "apron.v0.9.15" "git+https://github.com/antoinemine/apron.git#418a217c7a70dae3f422678f3aaba38ae374d91a" ]
108108
]

goblint.opam.locked

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ post-messages: [
148148
pin-depends: [
149149
[
150150
"goblint-cil.2.0.9"
151-
"git+https://github.com/goblint/cil.git#0913d6abce40bfda6b68a61b035c8a53ffb3c6a4"
151+
"git+https://github.com/goblint/cil.git#2243aad0e34cb59b7d2d18415ab88a7767c108b7"
152152
]
153153
[
154154
"apron.v0.9.15"

goblint.opam.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
x-maintenance-intent: ["(latest)" "(latest).(latest-1)"] # also keep previous minor version (with two releases per year, always keep a SV-COMP release)
44
available: os-family != "bsd" & os-distribution != "alpine" & (arch != "arm64" | os = "macos")
55
pin-depends: [
6-
[ "goblint-cil.2.0.9" "git+https://github.com/goblint/cil.git#0913d6abce40bfda6b68a61b035c8a53ffb3c6a4" ]
6+
[ "goblint-cil.2.0.9" "git+https://github.com/goblint/cil.git#2243aad0e34cb59b7d2d18415ab88a7767c108b7" ]
77
# pinned for stability (https://github.com/goblint/analyzer/issues/1520), remove after new apron release
88
[ "apron.v0.9.15" "git+https://github.com/antoinemine/apron.git#418a217c7a70dae3f422678f3aaba38ae374d91a" ]
99
]

tests/regression/70-transform/02-deadcode.t

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -193,9 +193,9 @@
193193
basic1(7);
194194
basic1(3);
195195
basic1(6);
196-
basic2(-3);
197-
basic2(-6);
198-
basic2(-12);
196+
basic2(- 3);
197+
basic2(- 6);
198+
basic2(- 12);
199199
one_branch_dead(9);
200200
one_branch_dead(12);
201201
f = & uncalled_but_referenced_function;

tests/regression/70-transform/04-unchecked-condition.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
f_both(3);
6767
f_both(9);
6868
f_true(12);
69-
f_false(-3);
69+
f_false(- 3);
7070
}
7171
return (0);
7272
}

tests/sv-comp/basic/if_det_incr_true-unreach-call.expected

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
│ _ │ │
1515
└─────────────────────┘ │
1616
│ │
17-
│ Assign 'x = -1' │ Test (x,false)
17+
│ Assign 'x = - 1' │ Test (x,false)
1818
▼ │
1919
┌─────────────────────┐ │
2020
│ _ │ │

0 commit comments

Comments
 (0)