Proof that attribute __overloadable__ works as well as overloadable

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64781 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Sema/overloadable.c b/test/Sema/overloadable.c
index 040b7fa..afac741 100644
--- a/test/Sema/overloadable.c
+++ b/test/Sema/overloadable.c
@@ -27,7 +27,7 @@
 
 struct X { int x; float y; };
 struct Y { int x; float y; };
-int* accept_struct(struct X x) __attribute__((overloadable));
+int* accept_struct(struct X x) __attribute__((__overloadable__));
 float* accept_struct(struct Y y) __attribute__((overloadable));
 
 void test_struct(struct X x, struct Y y) {