Hi, I tried llc march=c to export c codes, and codes are really good, except that I have a lagged compiler that don't recognize long long type, including the long long constants like 0ull so is there a switch for that or what should I do? thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110713/3cf0c8f4/attachment.html>
Hi,> Hi, I tried llc march=c to export c codes, and codes are really good, except > that I have a lagged compiler that don't recognize long long type, including the > long long constants like 0ull > > so is there a switch for that or what should I do?probably "long long" is used to represent 64 bit quantities on 32 bit machines. If your compiler can't handle 64 bit integers then I think you are in trouble: I don't know of a workaround. Ciao, Duncan.