Skip to content

Commit

Permalink
Add default TR::CodeGenerator constructor
Browse files Browse the repository at this point in the history
This is needed to prepare for the JitBuilder and TestCompiler CodeGenerators
being removed.

Signed-off-by: Daryl Maier <maier@ca.ibm.com>
  • Loading branch information
0xdaryl committed Sep 21, 2020
1 parent 4e028e2 commit ef7b263
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion compiler/codegen/CodeGenerator.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2000, 2018 IBM Corp. and others
* Copyright (c) 2000, 2020 IBM Corp. and others
*
* This program and the accompanying materials are made available under
* the terms of the Eclipse Public License 2.0 which accompanies this
Expand Down Expand Up @@ -39,6 +39,10 @@ class OMR_EXTENSIBLE CodeGenerator : public OMR::CodeGeneratorConnector
*/
CodeGenerator(TR::Compilation *comp) :
OMR::CodeGeneratorConnector() {}

CodeGenerator() :
OMR::CodeGeneratorConnector() {}

};
}

Expand Down

0 comments on commit ef7b263

Please sign in to comment.