Displaying 2 results from an estimated 2 matches for "c2105".
Did you mean:
2105
2004 Oct 12
2
[LLVMdev] GenRegisterInfo.h.inc
Hi all,
I cannot figure out why is named GenRegisterInfo.h.inc and not
GenRegisterInfo.inc ...
Is it for a dependency problem?
Back again to compilation problems under win32 with VC
llvm\lib\Analysis\DataStructure\Local.cpp(628) : error C2105: '--' needs
l-value
the line is:
Result.mergeWith(getValueDest(**--CS.arg_end()));
Can I submit patches for mutate it in something like:
llvm::CallSite::arg_iterator ii = CS.arg_end();
--ii;
Result.mergeWith(getValueDest(**ii));
There're several of this in Local.cp...
2004 Oct 12
0
[LLVMdev] GenRegisterInfo.h.inc
...X86GenRegisterInfo.inc. The
former is #included into X86RegisterInfo.h and the latter is #included
into X86RegisterInfo.cpp. Does this make sense? They are both correct.
> Back again to compilation problems under win32 with VC
>
> llvm\lib\Analysis\DataStructure\Local.cpp(628) : error C2105: '--' needs
> l-value
>
> the line is:
>
> Result.mergeWith(getValueDest(**--CS.arg_end()));
>
> Can I submit patches for mutate it in something like:
> llvm::CallSite::arg_iterator ii = CS.arg_end();
> --ii;
> Result.mergeWith(getValueDest(**ii...