mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-05 13:26:55 +00:00
Don't use the ISD::NodeType enum for SDNode opcodes, as CodeGen
uses several kinds of opcode values which are not declared within that enum. This fixes PR5946. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92794 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -586,7 +586,7 @@ void FastISelMap::PrintFunctionDefinitions(raw_ostream &OS) {
|
||||
// on opcode and type.
|
||||
OS << "unsigned FastEmit_";
|
||||
Operands.PrintManglingSuffix(OS);
|
||||
OS << "(MVT VT, MVT RetVT, ISD::NodeType Opcode";
|
||||
OS << "(MVT VT, MVT RetVT, unsigned Opcode";
|
||||
if (!Operands.empty())
|
||||
OS << ", ";
|
||||
Operands.PrintParameters(OS);
|
||||
|
Reference in New Issue
Block a user