diff options
author | Chris Lattner <sabre@nondot.org> | 2010-07-08 00:23:21 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-07-08 00:23:21 +0000 |
commit | 29457ff5cdfa86105e47e133010087979c866388 (patch) | |
tree | 195ce41f7d1413f679c55a4aba9853a48353373c | |
parent | 098432c3119cd4e421a2b906d06187b004d3a86b (diff) |
allow this to pass on 32-bit hosts.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@107845 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/address-space.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/address-space.c b/test/CodeGen/address-space.c index 1545e8fe98..04f88dc20a 100644 --- a/test/CodeGen/address-space.c +++ b/test/CodeGen/address-space.c @@ -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; |