File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -56,8 +56,7 @@ pub fn array_eq_zero_short(x: [u16; 3]) -> bool {
56
56
#[ no_mangle]
57
57
pub fn array_eq_zero_mid ( x : [ u16 ; 8 ] ) -> bool {
58
58
// CHECK-NEXT: start:
59
- // CHECK: %[[LOAD:.+]] = load i128,
60
- // CHECK-NEXT: %[[EQ:.+]] = icmp eq i128 %[[LOAD]], 0
59
+ // CHECK-NEXT: %[[EQ:.+]] = icmp eq i128 %0, 0
61
60
// CHECK-NEXT: ret i1 %[[EQ]]
62
61
x == [ 0 ; 8 ]
63
62
}
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ pub fn test_UnionU128(_: UnionU128) -> UnionU128 { loop {} }
65
65
66
66
#[ repr( C ) ]
67
67
pub union CUnionU128 { a : u128 }
68
- // CHECK: define void @test_CUnionU128({{%CUnionU128\*|ptr}} {{.*}} %_1 )
68
+ // CHECK: define void @test_CUnionU128(i128 %0 )
69
69
#[ no_mangle]
70
70
pub fn test_CUnionU128 ( _: CUnionU128 ) { loop { } }
71
71
You can’t perform that action at this time.
0 commit comments