[llvm-commits] [123431] initial support for WITH_SIZE_EXPR, but is not enough

clattner at apple.com clattner at apple.com
Sun Feb 4 19:57:03 PST 2007


Revision: 123431
Author:   clattner
Date:     2007-02-04 19:57:03 -0800 (Sun, 04 Feb 2007)

Log Message:
-----------
initial support for WITH_SIZE_EXPR, but is not enough
to fix PR1174

Modified Paths:
--------------
    apple-local/branches/llvm/gcc/llvm-convert.cpp

Modified: apple-local/branches/llvm/gcc/llvm-convert.cpp
===================================================================
--- apple-local/branches/llvm/gcc/llvm-convert.cpp	2007-02-05 03:50:26 UTC (rev 123430)
+++ apple-local/branches/llvm/gcc/llvm-convert.cpp	2007-02-05 03:57:03 UTC (rev 123431)
@@ -689,7 +689,8 @@
   case REALPART_EXPR: return EmitLV_XXXXPART_EXPR(exp, 0);
   case IMAGPART_EXPR: return EmitLV_XXXXPART_EXPR(exp, 1);
   case VIEW_CONVERT_EXPR:
-    // The address of a VIEW_CONVERT_EXPR is the address of its operand.
+  case WITH_SIZE_EXPR:
+    // The address of a these is the address of their operand.
     return EmitLV(TREE_OPERAND(exp, 0));
   }
 }





More information about the llvm-commits mailing list