Skip to content

Commit

Permalink
Fix variable return in no_sat function getter
Browse files Browse the repository at this point in the history
  • Loading branch information
ravikiranchollangi committed Dec 1, 2024
1 parent f995b86 commit ed42f4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Compiler/CompilerRS.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class CompilerRS : public CompilerOpenFPGA {
void SynthNoSimplify(bool noSimplify) { m_synthNoSimplify = noSimplify; }
int MaxThreads() { return m_maxThreads; }
void MaxThreads(int maxThreads) { m_maxThreads = maxThreads; }
bool SynthNoSat() { return m_synthNoFlatten; }
bool SynthNoSat() { return m_synthNoSat; }
void SynthNoSat(bool no_sat) { m_synthNoSat = no_sat; }
int SynthInitRegisters() { return m_synthInitRegisters; }
void SynthInitRegisters(int initRegisters) { m_synthInitRegisters = initRegisters; }
Expand Down

0 comments on commit ed42f4e

Please sign in to comment.