diff src/parse.y @ 7800:5861b95e9879

support for compound operators, implement trans_mul, mul_trans, herm_mul and mul_herm
author Jaroslav Hajek <highegg@gmail.com>
date Wed, 07 May 2008 16:33:15 +0200
parents 6b521b1e3631
children 3e4c9b69069d
line wrap: on
line diff
--- a/src/parse.y	Wed May 21 14:12:16 2008 -0400
+++ b/src/parse.y	Wed May 07 16:33:15 2008 +0200
@@ -1910,7 +1910,7 @@
   int c = tok_val->column ();
 
   tree_binary_expression *e
-    = new tree_binary_expression (op1, op2, l, c, t);
+    = maybe_compound_binary_expression (op1, op2, l, c, t);
 
   return fold (e);
 }