Re: [U-Boot] [RFC] kbuild.h: workaround for llvm IAS

2014-06-28 Thread Jeroen Hofstee
Hello Masahiro, On 27-06-14 08:38, Masahiro Yamada wrote: KBuild (ab)uses the asm statement to write to a file and llvm integrated as chokes about these invalid asm statements. Workaround it by making it look like valid asm code. Signed-off-by: Jeroen Hofstee I think Linux has the same proble

Re: [U-Boot] [RFC] kbuild.h: workaround for llvm IAS

2014-06-26 Thread Masahiro Yamada
Hi Jeroen, On Tue, 24 Jun 2014 21:36:06 +0200 Jeroen Hofstee wrote: > >> KBuild (ab)uses the asm statement to write to a file and > >> llvm integrated as chokes about these invalid asm statements. > >> Workaround it by making it look like valid asm code. > >> > >> Signed-off-by: Jeroen Hofstee

Re: [U-Boot] [RFC] kbuild.h: workaround for llvm IAS

2014-06-24 Thread Jeroen Hofstee
Hi Masahiro, On 24-06-14 14:53, Masahiro Yamada wrote: On Thu, 12 Jun 2014 23:40:54 +0200 Jeroen Hofstee wrote: KBuild (ab)uses the asm statement to write to a file and llvm integrated as chokes about these invalid asm statements. Workaround it by making it look like valid asm code. Signed-o

Re: [U-Boot] [RFC] kbuild.h: workaround for llvm IAS

2014-06-24 Thread Masahiro Yamada
Hi Jeroen, On Thu, 12 Jun 2014 23:40:54 +0200 Jeroen Hofstee wrote: > KBuild (ab)uses the asm statement to write to a file and > llvm integrated as chokes about these invalid asm statements. > Workaround it by making it look like valid asm code. > > Signed-off-by: Jeroen Hofstee I think Linu