remove extraneous statement
[soc.git] / src / soc / decoder / pseudo / parser.py
index 60a815c446be7e4a652d7566894fdf8403adb51c..c7db0cbd7545bb997b3c0be667f529d849f6c1f2 100644 (file)
@@ -383,7 +383,6 @@ class PowerParser:
     def p_for_stmt(self, p):
         """for_stmt : FOR test EQ test TO test COLON suite
         """
-        p[0] = ast.While(p[2], p[4], [])
         # auto-add-one (sigh) due to python range
         start = p[4]
         end = ast.BinOp(p[6], ast.Add(), ast.Constant(1))