File tree 4 files changed +22
-0
lines changed
collector/compile-benchmarks
cranelift-codegen-0.119.0
4 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ They mostly consist of real-world crates.
26
26
Rust programs.
27
27
- ** cranelift-codegen-0.82.1** : The largest crate from a code generator. Used by
28
28
wasmtime. Stresses obligation processing.
29
+ - ** cranelift-codegen-0.119.0** : The largest crate from a code generator. Used by wasmtime. Stresses obligation processing.
29
30
- ** diesel-1.4.8** : A type safe SQL query builder. Utilizes the type system to
30
31
ensure a lot of invariants. Stresses anything related to resolving
31
32
trait bounds, by having a lot of trait impls for a large number of different
Original file line number Diff line number Diff line change @@ -47,6 +47,11 @@ path = "cranelift-codegen-0.82.1/**"
47
47
SPDX-FileCopyrightText = " The Cranelift Project Developers"
48
48
SPDX-License-Identifier = " Apache-2.0 WITH LLVM-exception"
49
49
50
+ [[annotations ]]
51
+ path = " cranelift-codegen-0.119.0/**"
52
+ SPDX-FileCopyrightText = " The Cranelift Project Developers"
53
+ SPDX-License-Identifier = " Apache-2.0 WITH LLVM-exception"
54
+
50
55
[[annotations ]]
51
56
path = " ctfe-stress-5/**"
52
57
SPDX-FileCopyrightText = " The Rust Project Developers (see https://thanks.rust-lang.org)"
Original file line number Diff line number Diff line change
1
+ diff --git a/src/loop_analysis.rs b/src/loop_analysis.rs
2
+ index 71f84565..e8e2dcc6 100644
3
+ --- a/src/loop_analysis.rs
4
+ +++ b/src/loop_analysis.rs
5
+ @@ -230,6 +230,7 @@ impl LoopAnalysis {
6
+ domtree: &DominatorTree,
7
+ layout: &Layout,
8
+ ) {
9
+ + println!("testing");
10
+ let mut stack: Vec<Block> = Vec::new();
11
+ // We handle each loop header in reverse order, corresponding to a pseudo postorder
12
+ // traversal of the graph.
Original file line number Diff line number Diff line change
1
+ {
2
+ "artifact" : " library" ,
3
+ "category" : " primary"
4
+ }
You can’t perform that action at this time.
0 commit comments