From 73c6d3d245146bbc75925802c37b31e078ac4e9c Mon Sep 17 00:00:00 2001 From: mattias Date: Tue, 5 May 2015 18:06:31 +0000 Subject: [PATCH] IDE: fpc params: assembler style: add missing space git-svn-id: branches/fixes_1_4@48936 - --- ide/compileroptions.pp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ide/compileroptions.pp b/ide/compileroptions.pp index 9798a06e73..0347fee81e 100644 --- a/ide/compileroptions.pp +++ b/ide/compileroptions.pp @@ -2802,9 +2802,9 @@ begin { Assembler reading style -Ratt = AT&T -Rintel = Intel -Rdirect = direct } case AssemblerStyle of - 1: switches := switches + '-Rintel'; - 2: switches := switches + '-Ratt'; - 3: switches := switches + '-Rdirect'; + 1: switches := switches + ' -Rintel'; + 2: switches := switches + ' -Ratt'; + 3: switches := switches + ' -Rdirect'; end; // Syntax Options