diff options
Diffstat (limited to '14')
-rw-r--r-- | 14/main.y | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -72,7 +72,7 @@ void three_address_code() { | |||
72 | printf("%c",ops[count].opr); | 72 | printf("%c",ops[count].opr); |
73 | 73 | ||
74 | if(isalpha(ops[count].op2)) { | 74 | if(isalpha(ops[count].op2)) { |
75 | printf(" %c\n",ops[count].op2); | 75 | printf("%c\n",ops[count].op2); |
76 | } else if(ops[count].op2 >='1' && ops[count].op2 <='9') { | 76 | } else if(ops[count].op2 >='1' && ops[count].op2 <='9') { |
77 | printf("t%c\n",ops[count].op2); | 77 | printf("t%c\n",ops[count].op2); |
78 | } | 78 | } |