diff options
Diffstat (limited to 'clang/test/Sema/overloadable.c')
-rw-r--r-- | clang/test/Sema/overloadable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Sema/overloadable.c b/clang/test/Sema/overloadable.c index 040b7faf7cf..afac7410709 100644 --- a/clang/test/Sema/overloadable.c +++ b/clang/test/Sema/overloadable.c @@ -27,7 +27,7 @@ void test_funcptr(int (*f1)(int, double), 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) { |