diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2017-05-02 18:30:45 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2017-05-02 18:30:45 +0000 |
commit | 570918821a8492048e6ab54955c9864bd6c3e952 (patch) | |
tree | f9d0d3f3478c298aaf51987483bbbbefe8e6631b /test/Frontend/gnu-inline.c | |
parent | f0c55418e2b09eaab37c820d3756cc1b4584d084 (diff) |
Diffstat (limited to 'test/Frontend/gnu-inline.c')
-rw-r--r-- | test/Frontend/gnu-inline.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/Frontend/gnu-inline.c b/test/Frontend/gnu-inline.c index 0272df7e71eca..75d4fe6516f13 100644 --- a/test/Frontend/gnu-inline.c +++ b/test/Frontend/gnu-inline.c @@ -3,8 +3,10 @@ // RUN: %clang_cc1 -std=c99 -fgnu89-inline -fsyntax-only -x c -E -dM %s | FileCheck --check-prefix=GNU-INLINE %s // RUN: %clang_cc1 -fsyntax-only -x c++ -E -dM %s | FileCheck --check-prefix=GNU-INLINE %s // RUN: not %clang_cc1 -fgnu89-inline -fsyntax-only -x c++ %s 2>&1 | FileCheck --check-prefix=CXX %s +// RUN: not %clang_cc1 -fgnu89-inline -fsyntax-only -x objective-c++ %s 2>&1 | FileCheck --check-prefix=OBJCXX %s -// CXX: '-fgnu89-inline' not allowed with 'C++/ObjC++' +// CXX: '-fgnu89-inline' not allowed with 'C++' +// OBJCXX: '-fgnu89-inline' not allowed with 'Objective-C++' // STDC-INLINE-NOT: __GNUC_GNU_INLINE__ // STDC-INLINE: #define __GNUC_STDC_INLINE__ 1 |