search for: __lshrti3

Displaying 8 results from an estimated 8 matches for "__lshrti3".

Did you mean: __lshrdi3
2007 Jan 10
4
[LLVMdev] llvm-gcc build fail on RHEL v4 x86_64
.../../llvm-gcc/gcc/. -I../../llvm-gcc/gcc/../include -I../../llvm-gcc/gcc/../libcpp/include -I/home/xzx/llvm/include -I/home/xzx/llvmobj//include -DL_lshrdi3 -c ../../llvm-gcc/gcc/libgcc2.c -o libgcc/./_lshrdi3.o WARNING: 128-bit integers not supported! ../../llvm-gcc/gcc/libgcc2.c: In function '__lshrti3': ../../llvm-gcc/gcc/libgcc2.c:412: internal compiler error: Segmentation fault Please submit a full bug report, with preprocessed source if appropriate. See <URL:http://llvm.org/bugs <http://llvm.org/bugs>> for instructions. make[2]: *** [libgcc/./_lshrdi3.o] Error 1 make[2]: Leavi...
2007 Jan 10
0
[LLVMdev] llvm-gcc build fail on RHEL v4 x86_64
...lvm-gcc/gcc/../include > -I../../llvm-gcc/gcc/../libcpp/include -I/home/xzx/llvm/include > -I/home/xzx/llvmobj//include -DL_lshrdi3 -c > ../../llvm-gcc/gcc/libgcc2.c -o libgcc/./_lshrdi3.o > WARNING: 128-bit integers not supported! > ../../llvm-gcc/gcc/libgcc2.c: In function '__lshrti3': > ../../llvm-gcc/gcc/libgcc2.c:412: internal compiler error: > Segmentation fault > Please submit a full bug report, > with preprocessed source if appropriate. > See <URL:http://llvm.org/bugs <http://llvm.org/bugs>> for instructions. > make[2]: *** [libgcc/./_ls...
2007 Jan 11
2
[LLVMdev] llvm-gcc build fail on RHEL v4 x86_64
...clude >> -I../../llvm-gcc/gcc/../libcpp/include -I/home/xzx/llvm/include >> -I/home/xzx/llvmobj//include -DL_lshrdi3 -c >> ../../llvm-gcc/gcc/libgcc2.c -o libgcc/./_lshrdi3.o >> WARNING: 128-bit integers not supported! >> ../../llvm-gcc/gcc/libgcc2.c: In function '__lshrti3': >> ../../llvm-gcc/gcc/libgcc2.c:412: internal compiler error: >> Segmentation fault >> Please submit a full bug report, >> with preprocessed source if appropriate. >> See <URL:http://llvm.org/bugs <http://llvm.org/bugs>> for >> instructions. &...
2007 Jan 12
2
[LLVMdev] llvm-gcc build fail on RHEL v4 x86_64
...../libcpp/include -I/home/xzx/llvm/include > >>> -I/home/xzx/llvmobj//include -DL_lshrdi3 -c > >>> ../../llvm-gcc/gcc/libgcc2.c -o libgcc/./_lshrdi3.o > >>> WARNING: 128-bit integers not supported! > >>> ../../llvm-gcc/gcc/libgcc2.c: In function '__lshrti3': > >>> ../../llvm-gcc/gcc/libgcc2.c:412: internal compiler error: > >>> Segmentation fault > >>> Please submit a full bug report, > >>> with preprocessed source if appropriate. > >>> See <URL:http://llvm.org/bugs <http://llvm.or...
2007 Jan 11
0
[LLVMdev] llvm-gcc build fail on RHEL v4 x86_64
...I../../llvm-gcc/gcc/../libcpp/include -I/home/xzx/llvm/include >>> -I/home/xzx/llvmobj//include -DL_lshrdi3 -c >>> ../../llvm-gcc/gcc/libgcc2.c -o libgcc/./_lshrdi3.o >>> WARNING: 128-bit integers not supported! >>> ../../llvm-gcc/gcc/libgcc2.c: In function '__lshrti3': >>> ../../llvm-gcc/gcc/libgcc2.c:412: internal compiler error: >>> Segmentation fault >>> Please submit a full bug report, >>> with preprocessed source if appropriate. >>> See <URL:http://llvm.org/bugs <http://llvm.org/bugs>> for instru...
2007 Jan 12
0
[LLVMdev] llvm-gcc build fail on RHEL v4 x86_64
...e -I/home/xzx/llvm/include > >>> -I/home/xzx/llvmobj//include -DL_lshrdi3 -c > >>> ../../llvm-gcc/gcc/libgcc2.c -o libgcc/./_lshrdi3.o > >>> WARNING: 128-bit integers not supported! > >>> ../../llvm-gcc/gcc/libgcc2.c: In function '__lshrti3': > >>> ../../llvm-gcc/gcc/libgcc2.c:412: internal compiler error: > >>> Segmentation fault > >>> Please submit a full bug report, > >>> with preprocessed source if appropriate. > >>> See <URL:http://llvm.org/bug...
2018 Jan 30
0
[compiler-rt] Support 128 bits soft-floating point without int128_t support
On 30 January 2018 at 14:12, Kito Cheng via llvm-dev <llvm-dev at lists.llvm.org> wrote: > Hi all: > > I'm porting RISC-V[1] for compiler-rt recently, and I've got a problem > when adding soft float routine for rv32, RISC-V ABI required 128 bits > bits for long double, but it's implemented by int128_t, however rv32 > don't support __int128_t. > > Of
2018 Jan 30
2
[compiler-rt] Support 128 bits soft-floating point without int128_t support
Hi all: I'm porting RISC-V[1] for compiler-rt recently, and I've got a problem when adding soft float routine for rv32, RISC-V ABI required 128 bits bits for long double, but it's implemented by int128_t, however rv32 don't support __int128_t. Of cause, it not hard thing to support __int128_t by overriding TargetInfo::hasInt128Type for LLVM, but its will cause some ABI