search for: next26

Displaying 2 results from an estimated 2 matches for "next26".

Did you mean: next2
2008 Feb 05
1
[LLVMdev] signed integer types still in LLVM 2.1
Hello. I updated my LLVM with version 2.1 from 1.9. But I am curious why I still have signed integer type. I still get LLVM IR as follows: ...... ...... bb8.outer: ; preds = %bb10, %entry %i.0.0.ph = phi uint [ 0, %entry ], [ %indvar.next26, %bb10 ] ; <uint> [#uses=2] %sum.0.pn.ph = phi uint [ 0, %entry ], [ %sum.1, %bb10 ] ; <uint> [#uses=1] br label %bb8 bb3: ; preds = %bb8 %indvar.next = add uint %j.1, 1 ; <uint> [#uses=1] br label %bb8 ..... ..... When I compared this with that from LLVM 1.9, I found al...
2008 Feb 05
1
[LLVMdev] signed integer types still in LLVM 2.1
.... >> But I am curious why I still have signed integer type. > >Did you update your llvm-gcc? > >-Chris > >> I still get LLVM IR as follows: >> ...... >> ...... >> bb8.outer: ; preds = %bb10, %entry >> %i.0.0.ph = phi uint [ 0, %entry ], [ %indvar.next26, %bb10 ] ; <uint> [#uses=2] >> %sum.0.pn.ph = phi uint [ 0, %entry ], [ %sum.1, %bb10 ] ; <uint> [#uses=1] >> br label %bb8 >> >> bb3: ; preds = %bb8 >> %indvar.next = add uint %j.1, 1 ; <uint> [#uses=1] >> br label %bb8 >> ..... &...