search for: issingleword

Displaying 4 results from an estimated 4 matches for "issingleword".

2008 Sep 06
2
[LLVMdev] "has different visibility" warnings
...ffer.o) and (2) in /usr/local/lib/libLLVMSupport.a(CommandLine.o) ld: warning llvm::OwningPtr<llvm::MemoryBuffer>::~OwningPtr()has different visibility (1) in /usr/local/lib/libLLVMSupport.a(MemoryBuffer.o) and (2) in /usr/local/lib/libLLVMSupport.a(CommandLine.o) ld: warning llvm::APInt::isSingleWord() consthas different visibility (2) in /usr/local/lib/libLLVMTarget.a(TargetData.o) and (1) in /usr/local/lib/libLLVMSupport.a(APFloat.o) ld: warning llvm::APInt::isSingleWord() consthas different visibility (2) in /usr/local/lib/libLLVMCore.a(Instructions.o) and (1) in /usr/local/lib/libLLVMSu...
2008 Sep 06
0
[LLVMdev] "has different visibility" warnings
...sr/local/lib/libLLVMSupport.a(CommandLine.o) > ld: warning llvm::OwningPtr<llvm::MemoryBuffer>::~OwningPtr()has > different visibility (1) in > /usr/local/lib/libLLVMSupport.a(MemoryBuffer.o) and (2) in > /usr/local/lib/libLLVMSupport.a(CommandLine.o) > ld: warning llvm::APInt::isSingleWord() consthas different visibility > (2) in /usr/local/lib/libLLVMTarget.a(TargetData.o) and (1) in > /usr/local/lib/libLLVMSupport.a(APFloat.o) > ld: warning llvm::APInt::isSingleWord() consthas different visibility > (2) in /usr/local/lib/libLLVMCore.a(Instructions.o) and (1) in > /us...
2007 Jul 03
0
[LLVMdev] Solaris 9 compilation
...omputation. // This should be faster than the algorithm below. + // using floor(0.5 + x) instead of round(x) because latter is C99. if (magnitude < 52) { -#ifdef _MSC_VER - // Amazingly, VC++ doesn't have round(). return APInt(BitWidth, - uint64_t(::sqrt(double(isSingleWord()?VAL:pVal[0]))) + 0.5); -#else - return APInt(BitWidth, - uint64_t(::round(::sqrt(double(isSingleWord()?VAL:pVal[0]))))); -#endif + uint64_t(::floor(0.5 + + ::sqrt(::floor(0.5 +...
2015 Sep 08
4
Inserting MachineInstr's
Hi, I have a task to complete and I'm getting stuck. I can't find anything comparable in the documentation. The shortest explanation I can give is as follows: I need to use double-precision floating point values for floating-point multiplies. I'll not go into why: That would take the discussion away from the essential problem. E.g. Replace: fmuls %f20,%f21,%f8 with the