We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26c5d21 commit 6fbef7fCopy full SHA for 6fbef7f
src/test/codegen/dst-vtable-align-nonzero.rs
@@ -24,7 +24,7 @@ pub fn eliminates_runtime_check_when_align_1(
24
x: &Struct<WrapperWithAlign1<dyn Trait>>
25
) -> &WrapperWithAlign1<dyn Trait> {
26
// CHECK: load [[USIZE:i[0-9]+]], {{.+}} !range [[RANGE_META:![0-9]+]]
27
- // CHECK-NOT: tail call i64 @llvm.umax.i64
+ // CHECK-NOT: llvm.umax
28
// CHECK-NOT: icmp
29
// CHECK-NOT: select
30
// CHECK: ret
@@ -37,7 +37,7 @@ pub fn does_not_eliminate_runtime_check_when_align_2(
37
x: &Struct<WrapperWithAlign2<dyn Trait>>
38
) -> &WrapperWithAlign2<dyn Trait> {
39
// CHECK: [[X0:%[0-9]+]] = load [[USIZE]], {{.+}} !range [[RANGE_META]]
40
- // CHECK: {{icmp|llvm.umax.i64}}
+ // CHECK: {{icmp|llvm.umax}}
41
42
&x.dst
43
}
0 commit comments