[mlir][PDL] Add append specialization for ByteCode OpCode to fix GCC5 build

This commit is contained in:
River Riddle 2020-12-01 17:08:38 -08:00
parent 405ea2b93d
commit fa20ab7b1b
1 changed files with 1 additions and 0 deletions

View File

@ -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) {