Displaying 1 result from an estimated 1 matches for "_z6f_looppll".
2007 Jul 04
1
[LLVMdev] a strange emit of llvm-g++
...long i;
for (i = 0; i < sz; i++) {
long offset = i * sz;
long* out = c + offset;
out[i] = 0;
}
}
-------------------------------------------------------------
LLVM assembly was emitted out as follows:
-------------------------------------------------------------
void %_Z6f_loopPll(int* %c, int %sz) {
entry:
%sz = cast int %sz to uint ; <uint> [#uses=1]
%tmp18 = setgt int %sz, 0 ; <bool> [#uses=1]
...
...
...
-------------------------------------------------------------
The function name is strange.. Hmmm...
llvm-gcc emi...