Displaying 2 results from an estimated 2 matches for "7121ab07".
Did you mean:
31219b07
2016 Dec 21
2
Correct way to pass int128 from LLVM to C++ function (MSVC)
Thanks for the quick reply. Yes, passing it as int128* is a workaround that obviously works. Still, that leaves me with the return values. Or are you suggesting that I rewrite
int128 Modify(int128& tmp) { … }
to
void Modify(int128& result, int128& tmp) { … }
Obviously that will work, it just feels… dirty and wrong… :-)
I’ve also attempted to bit-cast i128’s to <2 x i64> in
2016 Dec 21
0
Correct way to pass int128 from LLVM to C++ function (MSVC)
...ABI
compatible with MSVC when passing __m128i values, so this should actually
work. Behind the scenes LLVM will pass these values indirectly by pointer.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20161221/7121ab07/attachment.html>