aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/cxx-condition.cpp
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2008-09-10 02:36:38 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2008-09-10 02:36:38 +0000
commite3a09e6ad09f8d1387ecaa008aaf85527909da0a (patch)
tree72eef524febbffa1510226fa373930a2d9c334a2 /test/CodeGen/cxx-condition.cpp
parent5921093cf1c2e9a8bd1a22b6f612e551bae7476b (diff)
Implement CodeGen support for the 'CXXConditionDeclExpr' expression node, which represents a 'condition' declaration, e.g: "if (int x=0) {...}".
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@56045 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/cxx-condition.cpp')
-rw-r--r--test/CodeGen/cxx-condition.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/CodeGen/cxx-condition.cpp b/test/CodeGen/cxx-condition.cpp
new file mode 100644
index 0000000000..746aadda55
--- /dev/null
+++ b/test/CodeGen/cxx-condition.cpp
@@ -0,0 +1,9 @@
+// RUN: clang -emit-llvm %s -o %t
+
+void f() {
+ int a;
+ if (int x=a) ++a; else a=x;
+ while (int x=a) ++a;
+ for (; int x=a; --a) ;
+ switch (int x=0) { }
+}