Hi Is there way to prevent i64 values being generated by the optimizer ? thanks dz
On Jan 8, 2011, at 9:32 AM, drizzle drizzle wrote:> Hi > Is there way to prevent i64 values being generated by the optimizer ?No. If you add a list of "native" types to the target data string, then the optimizer will avoid types not in the list though (see LangRef.html). For example, ARM32 sets "i32" as its own native integer type. i64 can still be generated, but will be less likely to be formed. -Chris