aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenObjC/overloadable.m
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGenObjC/overloadable.m')
-rw-r--r--test/CodeGenObjC/overloadable.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGenObjC/overloadable.m b/test/CodeGenObjC/overloadable.m
index 972dc4ed5895..7e9cc3d3b36d 100644
--- a/test/CodeGenObjC/overloadable.m
+++ b/test/CodeGenObjC/overloadable.m
@@ -4,7 +4,7 @@
@class C;
// RUN: grep _Z1fP11objc_object %t | count 1 &&
-void __attribute__((overloadable)) f(C *c) { }
+void __attribute__((overloadable)) f(id c) { }
// RUN: grep _Z1fP1C %t | count 1
-void __attribute__((overloadable)) f(id c) { }
+void __attribute__((overloadable)) f(C *c) { }