diff gen/dvalue.h @ 335:17b844102023 trunk

[svn r356] Fixed problem with array length assignment introduced in [355]
author lindquist
date Sat, 12 Jul 2008 17:04:36 +0200
parents 20446d22f832
children 6057fdf797d8
line wrap: on
line diff
--- a/gen/dvalue.h	Sat Jul 12 15:43:13 2008 +0200
+++ b/gen/dvalue.h	Sat Jul 12 17:04:36 2008 +0200
@@ -192,13 +192,6 @@
     virtual DLRValue* isLRValue() { return this; }
 };
 
-// array length d-value
-struct DArrayLenValue : DLRValue
-{
-    DArrayLenValue(Type* lt, LLValue* l, Type* rt, LLValue* r) : DLRValue(lt, l, rt, r) {}
-    virtual DArrayLenValue* isArrayLen() { return this; }
-};
-
 // complex number immediate d-value (much like slice)
 struct DComplexValue : DValue
 {