We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1803c1 commit d862ab0Copy full SHA for d862ab0
llvm/lib/YkIR/YkIRWriter.cpp
@@ -180,6 +180,7 @@ class YkIRWriter {
180
/// Does a naiave serialisation of an LLVM instruction by iterating over its
181
/// operands and serialising them in turn.
182
void serialiseInstGeneric(Instruction *I, OpCode Opc) {
183
+ OutStreamer.emitSizeT(typeIndex(I->getType()));
184
serialiseOpcode(Opc);
185
OutStreamer.emitInt32(I->getNumOperands());
186
for (Value *O : I->operands()) {
0 commit comments