Fariborz Jahanian | 3ac83d6 | 2013-01-25 23:57:05 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -O0 -triple=x86_64-apple-darwin -emit-llvm -o - %s | FileCheck %s |
| 2 | // rdar://11861085 |
| 3 | |
| 4 | struct s { |
| 5 | char filler [128]; |
| 6 | volatile int x; |
| 7 | }; |
| 8 | |
| 9 | struct s gs; |
| 10 | |
| 11 | void foo (void) { |
| 12 | struct s ls; |
| 13 | ls = ls; |
| 14 | gs = gs; |
| 15 | ls = gs; |
| 16 | } |
| 17 | // CHECK: define void @foo() |
| 18 | // CHECK: %[[LS:.*]] = alloca %struct.s, align 4 |
| 19 | // CHECK-NEXT: %[[ZERO:.*]] = bitcast %struct.s* %[[LS]] to i8* |
| 20 | // CHECK-NEXT: %[[ONE:.*]] = bitcast %struct.s* %[[LS]] to i8* |
| 21 | // CHECK-NEXT: call void @llvm.memcpy.{{.*}}(i8* %[[ZERO]], i8* %[[ONE]], i64 132, i32 4, i1 true) |
| 22 | // CHECK-NEXT: call void @llvm.memcpy.{{.*}}(i8* getelementptr inbounds (%struct.s* @gs, i32 0, i32 0, i32 0), i8* getelementptr inbounds (%struct.s* @gs, i32 0, i32 0, i32 0), i64 132, i32 4, i1 true) |
| 23 | // CHECK-NEXT: %[[TWO:.*]] = bitcast %struct.s* %[[LS]] to i8* |
| 24 | // CHECK-NEXT: call void @llvm.memcpy.{{.*}}(i8* %[[TWO]], i8* getelementptr inbounds (%struct.s* @gs, i32 0, i32 0, i32 0), i64 132, i32 4, i1 true) |
| 25 | |
| 26 | |
| 27 | struct s1 { |
| 28 | struct s y; |
| 29 | }; |
| 30 | |
| 31 | struct s1 s; |
| 32 | |
| 33 | void fee (void) { |
| 34 | s = s; |
| 35 | s.y = gs; |
| 36 | } |
| 37 | // CHECK: define void @fee() |
| 38 | // CHECK: call void @llvm.memcpy.{{.*}}(i8* getelementptr inbounds (%struct.s1* @s, i32 0, i32 0, i32 0, i32 0), i8* getelementptr inbounds (%struct.s1* @s, i32 0, i32 0, i32 0, i32 0), i64 132, i32 4, i1 true) |
| 39 | // CHECK-NEXT: call void @llvm.memcpy.{{.*}}(i8* getelementptr inbounds (%struct.s1* @s, i32 0, i32 0, i32 0, i32 0), i8* getelementptr inbounds (%struct.s* @gs, i32 0, i32 0, i32 0), i64 132, i32 4, i1 true) |
| 40 | |