diff options
Diffstat (limited to 'Sil/Syntax.icl')
-rw-r--r-- | Sil/Syntax.icl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Sil/Syntax.icl b/Sil/Syntax.icl index 934a300..ec7aafa 100644 --- a/Sil/Syntax.icl +++ b/Sil/Syntax.icl @@ -14,7 +14,7 @@ where toString (Application app) = toString app <+ ";" toString (Return Nothing) = "return;" toString (Return (Just a)) = "return " <+ a <+ ";" - toString (If c t e) = "if (" <+ c <+ ") ..." + toString (If bs e) = "if ..." toString (MachineStm s) = "|~" <+ s toString _ = "<<unimplemented Statement>>" |