diff python/ppci/ir.py @ 303:be7f60545368

Final fixups
author Windel Bouwman
date Fri, 06 Dec 2013 12:37:48 +0100
parents 6753763d3bec
children fa99f36fabb5
line wrap: on
line diff
--- a/python/ppci/ir.py	Fri Dec 06 12:09:35 2013 +0100
+++ b/python/ppci/ir.py	Fri Dec 06 12:37:48 2013 +0100
@@ -290,6 +290,7 @@
 def Div(a, b):
     return Binop(a, '/', b)
 
+
 class Eseq(Expression):
     """ Sequence of instructions where the last is an expression """
     def __init__(self, stmt, e):
@@ -473,5 +474,3 @@
         if not self.bb:
             raise Exception('No basic block')
         self.bb.addInstruction(i)
-
-