[CIL users] GCC __int128 type

2014-02-25 Thread Jan Smets
Hi Can CIL support this GCC extension? I currently get file.h[80:9-17] : syntax error Parsing errorFatal error: exception Frontc.ParseError("Parse error") If it can't be supported, is there a way to get around this? Thanks - Jan -

Re: [CIL users] static const

2012-07-24 Thread Jan Smets
ned integer, "a" > has to be promoted to a signed integer in order to compute the minus. > > Cheers > Oliver > > > 24.07.2012 07:48, Gabriel Kerneis: >> On Mon, Jul 23, 2012 at 05:45:06PM +0200, Jan Smets wrote: >>> Is this a valid coding error or a bug in cil

[CIL users] static const

2012-07-23 Thread Jan Smets
Hi Is this a valid coding error or a bug in cil ? The statics are declared at function scope. Thanks. func x { static const unsigned short a = 22; static const unsigned short b = a - 1; ... } error: initializer element is not constant CIL code: static unsigned short const a =22