]> granicus.if.org Git - clang/commitdiff
allow this to pass on 32-bit hosts.
authorChris Lattner <sabre@nondot.org>
Thu, 8 Jul 2010 00:23:21 +0000 (00:23 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 8 Jul 2010 00:23:21 +0000 (00:23 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@107845 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/address-space.c

index 1545e8fe98254f513b247d3368430ebe74100f5f..04f88dc20a1a46dc1a88bf085ff320743a350209 100644 (file)
@@ -36,8 +36,8 @@ typedef struct {
 } MyStruct;
 
 // CHECK: define void @test4(
-// CHECK: call void @llvm.memcpy.p0i8.p2i8.i64
-// CHECK: call void @llvm.memcpy.p2i8.p0i8.i64
+// CHECK: call void @llvm.memcpy.p0i8.p2i8
+// CHECK: call void @llvm.memcpy.p2i8.p0i8
 void test4(MyStruct __attribute__((address_space(2))) *pPtr) {
   MyStruct s = pPtr[0];
   pPtr[0] = s;