forked from OSchip/llvm-project
[mlir][PDL] Add append specialization for ByteCode OpCode to fix GCC5 build
This commit is contained in:
parent
405ea2b93d
commit
fa20ab7b1b
|
@ -265,6 +265,7 @@ struct ByteCodeWriter {
|
|||
|
||||
/// Append a field to the bytecode.
|
||||
void append(ByteCodeField field) { bytecode.push_back(field); }
|
||||
void append(OpCode opCode) { bytecode.push_back(opCode); }
|
||||
|
||||
/// Append an address to the bytecode.
|
||||
void append(ByteCodeAddr field) {
|
||||
|
|
Loading…
Reference in New Issue