Displaying 1 result from an estimated 1 matches for "operandinfo5".
Did you mean:
operandinfo
2012 Aug 17
2
[LLVMdev] MSCV linker and OperandInfo constants
...s
linking in to my compiler executable. The bug manifested itself by
replacing the operand data structures for target A with the data
structures for target B.
I have managed to work around this issue by moving the operand definitions
from the llvm namespace to a sub-target namespace (i.e. llvm::OperandInfo5
-> llvm::X86::OperandInfo5)
My work around changes the InstrInfoEmitter::run() function in
TableGen/InstrInfoEmitter.cpp . A patch (from llvm 3.0 - it doesn't appear
much has changed) can be found here: http://pastebin.com/pHmu1V63
The whole modified function can be found here:
http://...