search for: nextlabel

Displaying 1 result from an estimated 1 matches for "nextlabel".

Did you mean: netlabel
2013 Sep 30
1
[LLVMdev] Will it be slow much if a lot of BasicBlock been created?
Hi, all I am doing some work about instruction translating. and the IR is sort of:(whatever it is) %v1 = alloca i32 store i32 10, i32* %v1 %v0 = alloca i32 store i32 0, i32* %v0 %0 = load i32* %v0 %1 = add i32 %0, 1 store i32 %1, i32* %v0 %2 = load i32* %v1 %3 = add i32 %2, -1 store i32 %3, i32* %v1 %4 = load i32* %v0 ret i32 %4 I want to know that if I create a basic block for every instruction