Displaying 1 result from an estimated 1 matches for "cfeflag".
Did you mean:
c_lflag
2011 Oct 27
0
[LLVMdev] llc with long-longs and hex floating point
...number but an
invalid integer constant
Here's a snippet of the relevant section of diag01_c.c:
*(&llvm_cbe_l) = 75000ull;
*(&llvm_cbe_f) = 0x1.9f4bc6p+3;
*(&llvm_cbe_d) = -0x1.85d54c985f06fp+6;
Here's how vpolcc.ss is calling lcc:
($CFE is : ~/mips/lcc-run/lcc )
($cfeflag: I~/sim/sslittle-na-sstrix-include )
execute "$CFE $cfeflag -g -Wf-target=$TARGET -S -o $base.lef $base.i"
My questions are (the second one is relevant to llvm):
Can anyone tell me what I can do to get lcc to accept long-long values, as
well as C9X hex floating point constants and suc...