In the following sequence:<br><br>  $llc -march=c -o diag01_c.c diag01.ll<br>  $vpolcc.ss -S -k diag01_c.c  <<== **FAILS**<br>  $vpolcc.ss -o diag01 diag01_c.s<br><br>I am using llc (from llvm) to convert an .ll file into a .c file.  I am then running the .c file through vpolcc.ss (from zephyr) to further process it for mips architecture.  The vpolcc.ss script fails at lcc (not to be confused with llc), with the following error:<br>

<br>diag01_c.c:304: `75000ull' is a preprocessing number but an invalid integer constant<br>diag01_c.c:305: `0x1.9f4bc6p' is a preprocessing number but an invalid integer constant<br>diag01_c.c:306: `0x1.85d54c985f06fp' is a preprocessing number but an invalid integer constant<br>

<br>Here's a snippet of the relevant section of diag01_c.c:<br><br>  *(&llvm_cbe_l) = 75000ull;<br>  *(&llvm_cbe_f) = 0x1.9f4bc6p+3;<br>  *(&llvm_cbe_d) = -0x1.85d54c985f06fp+6;<br><br>Here's how vpolcc.ss is calling lcc:<br>

<br>  ($CFE is : ~/mips/lcc-run/lcc )<br>  ($cfeflag: I~/sim/sslittle-na-sstrix-include )<br>  execute "$CFE $cfeflag -g -Wf-target=$TARGET -S -o $base.lef $base.i"<br><br>My questions are (the second one is relevant to llvm):<br>

<br>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 such?<br><br>If necessary, I'm willing to modify llc (CBackend.cpp) to generate values that lcc can digest.  However, I'm not sure how else I can represent the values shown above.<br>

<br>Can someone give me an idea of where to start?<br><br>Regards,<br>Lew Payne<br>Boise State University<br>Compiler Research Team<br><br>