From 3309254474382d12365b7e02e1028c587cebaf5e Mon Sep 17 00:00:00 2001 From: florian Date: Mon, 24 Mar 2014 17:09:28 +0000 Subject: [PATCH] * do not write a space before the condition for instructions without operands, not sure why this was there git-svn-id: trunk@27268 - --- compiler/arm/agarmgas.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/arm/agarmgas.pas b/compiler/arm/agarmgas.pas index 9a995f8ca7..0ac95122c9 100644 --- a/compiler/arm/agarmgas.pas +++ b/compiler/arm/agarmgas.pas @@ -296,7 +296,7 @@ unit agarmgas; postfix:='.w'; if taicpu(hp).ops = 0 then - s:=#9+gas_op2str[op]+' '+cond2str[taicpu(hp).condition]+oppostfix2str[taicpu(hp).oppostfix] + s:=#9+gas_op2str[op]+cond2str[taicpu(hp).condition]+oppostfix2str[taicpu(hp).oppostfix] else if (taicpu(hp).opcode>=A_VABS) and (taicpu(hp).opcode<=A_VSUB) then s:=#9+gas_op2str[op]+cond2str[taicpu(hp).condition]+oppostfix2str[taicpu(hp).oppostfix] else