Skip to content

Commit

Permalink
Merge pull request #1813 from r30shah/increaseSnippetLimit
Browse files Browse the repository at this point in the history
Increase the limit of constant data snippet
  • Loading branch information
0xdaryl authored Oct 19, 2017
2 parents 07994ae + fcdd399 commit 956eacc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compiler/z/codegen/OMRCodeGenerator.hpp
Original file line number Diff line number Diff line change
@@ -1135,8 +1135,8 @@ class OMR_EXTENSIBLE CodeGenerator : public OMR::CodeGenerator
TR::Instruction* ccInstruction() { return _ccInstruction; }
void setCCInstruction(TR::Instruction* cc) { _ccInstruction = cc; }

#define TR_DEFAULT_DATA_SNIPPET_EXPONENT 6
int32_t constantDataSnippetExponent() { return TR_DEFAULT_DATA_SNIPPET_EXPONENT; } // 1 << 6 = 64 byte max size for each constantDataSnippet
#define TR_DEFAULT_DATA_SNIPPET_EXPONENT 7
int32_t constantDataSnippetExponent() { return TR_DEFAULT_DATA_SNIPPET_EXPONENT; } // 1 << 7 = 128 byte max size for each constantDataSnippet


private:

0 comments on commit 956eacc

Please sign in to comment.