diff options
Diffstat (limited to 'clang/test/Sema/stdcall-fastcall.c')
| -rw-r--r-- | clang/test/Sema/stdcall-fastcall.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/clang/test/Sema/stdcall-fastcall.c b/clang/test/Sema/stdcall-fastcall.c index 3a222dd4bc2..4e938f575fb 100644 --- a/clang/test/Sema/stdcall-fastcall.c +++ b/clang/test/Sema/stdcall-fastcall.c @@ -6,7 +6,5 @@ int __attribute__((fastcall)) var2; // expected-warning{{'fastcall' attribute on // Different CC qualifiers are not compatible void __attribute__((stdcall, fastcall)) foo3(); // expected-error{{stdcall and fastcall attributes are not compatible}} - -// FIXME: Something went wrong recently and diagnostics is not generated anymore void __attribute__((stdcall)) foo4(); -void __attribute__((fastcall)) foo4(); +void __attribute__((fastcall)) foo4(); // expected-error{{fastcall and stdcall attributes are not compatible}} |

