summaryrefslogtreecommitdiff
path: root/test/Parser/cxx-stmt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/Parser/cxx-stmt.cpp')
-rw-r--r--test/Parser/cxx-stmt.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/test/Parser/cxx-stmt.cpp b/test/Parser/cxx-stmt.cpp
index cc35ba153f6b0..fdd573e6bfa5d 100644
--- a/test/Parser/cxx-stmt.cpp
+++ b/test/Parser/cxx-stmt.cpp
@@ -1,4 +1,4 @@
-// RUN: clang-cc -fsyntax-only -verify %s
+// RUN: %clang_cc1 -fsyntax-only -verify %s
void f1()
{
@@ -51,4 +51,10 @@ void f4() {
switch (Kind) {
case Type: i = 7; break; // no error.
}
-} \ No newline at end of file
+}
+
+// PR5500
+void f5() {
+ asm volatile ("":: :"memory");
+ asm volatile ("": ::"memory");
+}