Commit e135972
authored
Update charon submodule by 15 commits (model-checking#4464)
This increment advances the charon submodule from 0c4617c9 to 30cab882
(15 commits).
API Changes Required:
- TraitDecl.const_defaults: HashMap → IndexMap
- TraitDecl.type_defaults: HashMap → IndexMap
Progress: 15 of ~1008 commits (1.5%)
By submitting this pull request, I confirm that my contribution is made
under the terms of the Apache 2.0 and MIT licenses.1 parent 76a4adc commit e135972
File tree
6 files changed
+8
-10
lines changed- kani-compiler
- src/codegen_aeneas_llbc
- mir_to_ullbc
- scripts
6 files changed
+8
-10
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
248 | 248 | | |
249 | 249 | | |
250 | 250 | | |
251 | | - | |
| 251 | + | |
252 | 252 | | |
253 | 253 | | |
254 | 254 | | |
| |||
940 | 940 | | |
941 | 941 | | |
942 | 942 | | |
| 943 | + | |
943 | 944 | | |
944 | 945 | | |
945 | 946 | | |
| |||
- charon-ml/src/CharonVersion.ml+1-1
- charon-ml/src/generated/Generated_GAst.ml+6
- charon-ml/src/generated/Generated_GAstOfJson.ml+6
- charon/Cargo.lock+1-1
- charon/Cargo.toml+1-4
- charon/src/ast/gast.rs+3-3
- charon/src/ast/llbc_ast_utils.rs+22-5
- charon/src/ast/meta.rs+2-3
- charon/src/ast/ullbc_ast_utils.rs+24-9
- charon/src/ast/visitor.rs+19
- charon/src/bin/charon-driver/translate/translate_ctx.rs+43-7
- charon/src/bin/charon-driver/translate/translate_functions_to_ullbc.rs+8-1
- charon/src/bin/charon-driver/translate/translate_traits.rs+35-31
- charon/src/bin/charon/main.rs+12-10
- charon/src/bin/generate-ml/main.rs+1-16
- charon/src/lib.rs+18
- charon/src/options.rs+9
- charon/src/transform/mod.rs+3
- charon/src/transform/remove_unused_methods.rs+24
- charon/tests/ui/associated-types.out-12
- charon/tests/ui/call-to-known-trait-method.out-9
- charon/tests/ui/closures.out-3
- charon/tests/ui/external.out-3
- charon/tests/ui/generic-associated-types.out+14-14
- charon/tests/ui/impl-trait.out-3
- charon/tests/ui/issue-118-generic-copy.out-3
- charon/tests/ui/issue-165-vec-macro.out-3
- charon/tests/ui/issue-297-cfg.out+189-1.1k
- charon/tests/ui/issue-395-failed-to-normalize.out+52-940
- charon/tests/ui/issue-4-slice-try-into-array.out-3
- charon/tests/ui/issue-4-traits.out-3
- charon/tests/ui/issue-45-misc.out+213-1.2k
- charon/tests/ui/issue-70-override-provided-method.3.out-12
- charon/tests/ui/issue-70-override-provided-method.out-33
- charon/tests/ui/issue-91-enum-to-discriminant-cast.out-3
- charon/tests/ui/iterator.out+32-32
- charon/tests/ui/iterator.rs+3-2
- charon/tests/ui/loops.out+207-1.2k
- charon/tests/ui/method-impl-generalization.out-3
- charon/tests/ui/opaque-trait.out+153
- charon/tests/ui/opaque-trait.rs+48
- charon/tests/ui/opaque_attribute.out-3
- charon/tests/ui/polonius_map.out+3-78
- charon/tests/ui/predicates-on-late-bound-vars.out-3
- charon/tests/ui/quantified-clause.out+49-928
- charon/tests/ui/simple/opaque-trait-with-clause-in-method.out+24
- charon/tests/ui/simple/opaque-trait-with-clause-in-method.rs+11
- charon/tests/ui/type_alias.out-12
- charon/tests/ui/ullbc-control-flow.out+213-1.2k
- charon/tests/ui/unsize.out-6
- charon/tests/ui/unsupported/issue-79-bound-regions.out+47-1.0k
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
| 15 | + | |
15 | 16 | | |
16 | 17 | | |
17 | 18 | | |
| |||
Lines changed: 0 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
40 | 40 | | |
41 | 41 | | |
42 | 42 | | |
43 | | - | |
44 | 43 | | |
45 | 44 | | |
46 | 45 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
54 | 54 | | |
55 | 55 | | |
56 | 56 | | |
| 57 | + | |
57 | 58 | | |
58 | 59 | | |
59 | 60 | | |
| |||
118 | 119 | | |
119 | 120 | | |
120 | 121 | | |
121 | | - | |
122 | | - | |
123 | | - | |
124 | | - | |
125 | 122 | | |
126 | 123 | | |
127 | 124 | | |
128 | 125 | | |
129 | 126 | | |
130 | 127 | | |
131 | 128 | | |
132 | | - | |
| 129 | + | |
133 | 130 | | |
134 | 131 | | |
135 | | - | |
| 132 | + | |
136 | 133 | | |
137 | 134 | | |
138 | 135 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
| 7 | + | |
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
| |||
0 commit comments