diff options
Diffstat (limited to 'clang/test/Sema/attr-ifunc.c')
| -rw-r--r-- | clang/test/Sema/attr-ifunc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Sema/attr-ifunc.c b/clang/test/Sema/attr-ifunc.c index 16fd0dfc982..af7a7e33da0 100644 --- a/clang/test/Sema/attr-ifunc.c +++ b/clang/test/Sema/attr-ifunc.c @@ -36,7 +36,7 @@ void f1a() __asm("f1"); void f1a() {} //expected-note@-1 {{previous definition is here}} void f1() __attribute__((ifunc("f1_ifunc"))); -//expected-error@-1 {{definition with same mangled name as another definition}} +//expected-error@-1 {{definition with same mangled name 'f1' as another definition}} void* f1_ifunc() { return 0; } void* f6_ifunc(int i); |

