[cfe-commits] r136177 - in /cfe/trunk/test/CodeGen: 2007-11-07-CopyAggregateAlign.c 2007-11-07-ZeroAggregateAlign.c
Eric Christopher
echristo at apple.com
Tue Jul 26 16:12:06 PDT 2011
Author: echristo
Date: Tue Jul 26 18:12:06 2011
New Revision: 136177
URL: http://llvm.org/viewvc/llvm-project?rev=136177&view=rev
Log:
Try harder to fix these for windows.
Modified:
cfe/trunk/test/CodeGen/2007-11-07-CopyAggregateAlign.c
cfe/trunk/test/CodeGen/2007-11-07-ZeroAggregateAlign.c
Modified: cfe/trunk/test/CodeGen/2007-11-07-CopyAggregateAlign.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/2007-11-07-CopyAggregateAlign.c?rev=136177&r1=136176&r2=136177&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/2007-11-07-CopyAggregateAlign.c (original)
+++ cfe/trunk/test/CodeGen/2007-11-07-CopyAggregateAlign.c Tue Jul 26 18:12:06 2011
@@ -2,6 +2,6 @@
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.i64{{.*}}, i32 2, i1 false)
+// CHECK: call void @llvm.memcpy.p0i8.p0i8.{{.*}}, i32 2, i1 false)
void q() { struct A a, b; a = b; }
Modified: cfe/trunk/test/CodeGen/2007-11-07-ZeroAggregateAlign.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/2007-11-07-ZeroAggregateAlign.c?rev=136177&r1=136176&r2=136177&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/2007-11-07-ZeroAggregateAlign.c (original)
+++ cfe/trunk/test/CodeGen/2007-11-07-ZeroAggregateAlign.c Tue Jul 26 18:12:06 2011
@@ -1,5 +1,5 @@
// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
struct A { short s; short t; int i; };
// CHECK: %a = alloca %struct.A, align 4
-// CHECK: call void @llvm.memset.p0i8.i64{{.*}}i32 4, i1 false)
+// CHECK: call void @llvm.memset.p0i8.{{.*}}i32 4, i1 false)
void q() { struct A a = {0}; }
More information about the cfe-commits
mailing list