Displaying 2 results from an estimated 2 matches for "carry_false".
2011 Aug 19
2
[LLVMdev] LLVM ERROR: Cannot select error in simple i128 math?
In both LLVM 2.9 and the current svn head, I get the following error when running llc
% llc < fxp2.ll
LLVM ERROR: Cannot select: 0xa5302b0: glue = carry_false [ID=7]
on this code:
target triple = "i386-pc-linux-gnu"
define i32 @fxpadd(i32 %cl) {
entry:
%0 = zext i32 %cl to i128
%1 = zext i32 %cl to i128
%2 = add i128 %1, %0
br label %L1001510
L1001510: ; preds = %L13400
%vr1484.5 = trunc i12...
2011 Aug 19
0
[LLVMdev] LLVM ERROR: Cannot select error in simple i128 math?
On Fri, Aug 19, 2011 at 1:59 PM, Craig Smith <craig at ni.com> wrote:
> In both LLVM 2.9 and the current svn head, I get the following error when running llc
>
> % llc < fxp2.ll
> LLVM ERROR: Cannot select: 0xa5302b0: glue = carry_false [ID=7]
>
> on this code:
>
> target triple = "i386-pc-linux-gnu"
>
> define i32 @fxpadd(i32 %cl) {
> entry:
> %0 = zext i32 %cl to i128
> %1 = zext i32 %cl to i128
> %2 = add i128 %1, %0
> br label %L1001510
>
> L1001510: ...