aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/CodeGen/address-space.c4
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;