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 {
5656#[ no_mangle]
5757pub fn array_eq_zero_mid ( x : [ u16 ; 8 ] ) -> bool {
5858 // 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
6160 // CHECK-NEXT: ret i1 %[[EQ]]
6261 x == [ 0 ; 8 ]
6362}
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ pub fn test_UnionU128(_: UnionU128) -> UnionU128 { loop {} }
6565
6666#[ repr( C ) ]
6767pub union CUnionU128 { a : u128 }
68- // CHECK: define void @test_CUnionU128({{%CUnionU128\*|ptr}} {{.*}} %_1 )
68+ // CHECK: define void @test_CUnionU128(i128 %0 )
6969#[ no_mangle]
7070pub fn test_CUnionU128 ( _: CUnionU128 ) { loop { } }
7171
You can’t perform that action at this time.
0 commit comments