@@ -11,11 +11,12 @@ type RGB48 = [u16; 3];
11
11
// CHECK-LABEL: @swap_rgb48_manually(
12
12
#[ no_mangle]
13
13
pub fn swap_rgb48_manually ( x : & mut RGB48 , y : & mut RGB48 ) {
14
- // CHECK-NOT: alloca
15
- // CHECK: %[[TEMP0:.+]] = load <3 x i16>, ptr %x, align 2
16
- // CHECK: %[[TEMP1:.+]] = load <3 x i16>, ptr %y, align 2
17
- // CHECK: store <3 x i16> %[[TEMP1]], ptr %x, align 2
18
- // CHECK: store <3 x i16> %[[TEMP0]], ptr %y, align 2
14
+ // FIXME: See #115212 for why this has an alloca again
15
+
16
+ // CHECK: alloca [3 x i16], align 2
17
+ // CHECK: call void @llvm.memcpy.p0.p0.i64({{.+}}, i64 6, i1 false)
18
+ // CHECK: call void @llvm.memcpy.p0.p0.i64({{.+}}, i64 6, i1 false)
19
+ // CHECK: call void @llvm.memcpy.p0.p0.i64({{.+}}, i64 6, i1 false)
19
20
20
21
let temp = * x;
21
22
* x = * y;
@@ -25,11 +26,25 @@ pub fn swap_rgb48_manually(x: &mut RGB48, y: &mut RGB48) {
25
26
// CHECK-LABEL: @swap_rgb48
26
27
#[ no_mangle]
27
28
pub fn swap_rgb48 ( x : & mut RGB48 , y : & mut RGB48 ) {
29
+ // FIXME: See #115212 for why this has an alloca again
30
+
31
+ // CHECK: alloca [3 x i16], align 2
32
+ // CHECK: call void @llvm.memcpy.p0.p0.i64({{.+}}, i64 6, i1 false)
33
+ // CHECK: call void @llvm.memcpy.p0.p0.i64({{.+}}, i64 6, i1 false)
34
+ // CHECK: call void @llvm.memcpy.p0.p0.i64({{.+}}, i64 6, i1 false)
35
+ swap ( x, y)
36
+ }
37
+
38
+ type RGBA64 = [ u16 ; 4 ] ;
39
+
40
+ // CHECK-LABEL: @swap_rgba64
41
+ #[ no_mangle]
42
+ pub fn swap_rgba64 ( x : & mut RGBA64 , y : & mut RGBA64 ) {
28
43
// CHECK-NOT: alloca
29
- // CHECK: load <3 x i16>
30
- // CHECK: load <3 x i16>
31
- // CHECK: store <3 x i16>
32
- // CHECK: store <3 x i16>
44
+ // CHECK-DAG: %[[XVAL:.+]] = load <4 x i16>, ptr %x, align 2
45
+ // CHECK-DAG: %[[YVAL:.+]] = load <4 x i16>, ptr %y, align 2
46
+ // CHECK-DAG : store <4 x i16> %[[YVAL]], ptr %x, align 2
47
+ // CHECK-DAG : store <4 x i16> %[[XVAL]], ptr %y, align 2
33
48
swap ( x, y)
34
49
}
35
50
0 commit comments