]> granicus.if.org Git - clang/commitdiff
Implement CodeGen support for the 'CXXConditionDeclExpr' expression node, which repre...
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>
Wed, 10 Sep 2008 02:36:38 +0000 (02:36 +0000)
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>
Wed, 10 Sep 2008 02:36:38 +0000 (02:36 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@56045 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CGExpr.cpp
lib/CodeGen/CodeGenFunction.h
test/CodeGen/cxx-condition.cpp [new file with mode: 0644]

index f8dc9dcd43a82d30154491e8f9b090da8d3707d4..cafe5761cac78ecad59fc36399ea4f5314358465 100644 (file)
@@ -121,6 +121,9 @@ LValue CodeGenFunction::EmitLValue(const Expr *E) {
   case Expr::StringLiteralClass:
     return EmitStringLiteralLValue(cast<StringLiteral>(E));
 
+  case Expr::CXXConditionDeclExprClass:
+    return EmitCXXConditionDeclLValue(cast<CXXConditionDeclExpr>(E));
+
   case Expr::ObjCMessageExprClass:
     return EmitObjCMessageExprLValue(cast<ObjCMessageExpr>(E));
   case Expr::ObjCIvarRefExprClass: 
@@ -786,6 +789,12 @@ LValue CodeGenFunction::EmitCallExprLValue(const CallExpr *E) {
                           E->getType().getCVRQualifiers());
 }
 
+LValue
+CodeGenFunction::EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E) {
+  EmitLocalBlockVarDecl(*E->getVarDecl());
+  return EmitDeclRefLValue(E);
+}
+
 LValue CodeGenFunction::EmitObjCMessageExprLValue(const ObjCMessageExpr *E) {
   // Can only get l-value for message expression returning aggregate type
   RValue RV = EmitObjCMessageExpr(E);
index 5054b56d212c09aa902858c03f25b3479a9950ef..263a0f2f53167b92e1db55283929c695c178e20b 100644 (file)
@@ -19,6 +19,7 @@
 #include "llvm/ADT/SmallVector.h"
 #include "llvm/Support/IRBuilder.h"
 #include "clang/AST/Expr.h"
+#include "clang/AST/ExprCXX.h"
 #include "clang/AST/ExprObjC.h"
 
 #include <vector>
@@ -333,6 +334,8 @@ public:
   LValue EmitLValueForField(llvm::Value* Base, FieldDecl* Field,
                             bool isUnion, unsigned CVRQualifiers);
       
+  LValue EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E);
+
   LValue EmitObjCMessageExprLValue(const ObjCMessageExpr *E);
   LValue EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E);
   LValue EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E);
diff --git a/test/CodeGen/cxx-condition.cpp b/test/CodeGen/cxx-condition.cpp
new file mode 100644 (file)
index 0000000..746aadd
--- /dev/null
@@ -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) { }
+}