gcc 4.4 seems to be when they added int128_t and
I need to use bit shifting and I have run out of room for some bit fields.

Edit: it might be because I'm on 32 bit computer, there's no way to have it for a 32 bit pc(atom), is there? I wouldn't care if it generated tricky slow machine code if I would work as expected with bitshifting.

P.S. Although the question is still interesting I found that I misinterpreted the compiler warning and did not need 128 bit types.

link|improve this question

60% accept rate
feedback

3 Answers

I'm pretty sure that __int128_t is available on earlier versions of gcc. Just checked on 4.2.1 and FreeBSD and sizeof(__int128_t) gives 16.

link|improve this answer
feedback

You could use two 64-bit ints, but then you need to keep track of the bits moving between.

link|improve this answer
feedback

You could also use a library. This would have the advantage that it is portable (regarding platform and compiler) and you could easily switch to even bigger datatype. One I could recommend is gmp (even if its intention is not to handle bitwidth x, but variable as big as you want).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.