Skip to content

Commit

Permalink
Generate NO_LONGLONG when --ccomp is passed
Browse files Browse the repository at this point in the history
  • Loading branch information
chenyang78 committed Jul 31, 2011
1 parent 40464b9 commit f490d75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/OutputMgr.cpp
Expand Up @@ -389,7 +389,7 @@ OutputMgr::OutputHeader(int argc, char *argv[], unsigned long seed)
if (CGOptions::paranoid() && !CGOptions::concise())
out << "#include <assert.h>" << endl;

if (!CGOptions::longlong()) {
if (!CGOptions::longlong() || CGOptions::ccomp()) {
out << endl;
out << "#define NO_LONGLONG" << std::endl;
out << endl;
Expand Down

0 comments on commit f490d75

Please sign in to comment.