summaryrefslogtreecommitdiffstats
path: root/test/Parser/asm.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Parser/asm.c')
-rw-r--r--test/Parser/asm.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Parser/asm.c b/test/Parser/asm.c
index df2e16f..9081826 100644
--- a/test/Parser/asm.c
+++ b/test/Parser/asm.c
@@ -1,7 +1,8 @@
// RUN: %clang_cc1 -fsyntax-only -verify %s
void f1() {
- asm ("ret" : : :); // expected-error {{expected string literal}}
+ // PR7673: Some versions of GCC support an empty clobbers section.
+ asm ("ret" : : :);
}
void f2() {
OpenPOWER on IntegriCloud