
This reverts commit r253512. This likely broke the bots in: http://lab.llvm.org:8011/builders/clang-ppc64-elf-linux2/builds/20202 http://bb.pgr.jp/builders/clang-3stage-i686-linux/builds/3787 llvm-svn: 253542
8 lines
279 B
C
8 lines
279 B
C
// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
|
|
struct A { char s, t, u, v; short a; };
|
|
// CHECK: %a = alloca %struct.A, align 2
|
|
// CHECK: %b = alloca %struct.A, align 2
|
|
// CHECK: call void @llvm.memcpy.p0i8.p0i8.{{.*}}, i32 2, i1 false)
|
|
|
|
void q() { struct A a, b; a = b; }
|