Skip to content

Commit

Permalink
Remove a bit of dead code.
Browse files Browse the repository at this point in the history
  • Loading branch information
regehr committed Aug 5, 2011
1 parent eaf9df0 commit 8ed6378
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions src/OutputMgr.cpp
Expand Up @@ -62,18 +62,6 @@ static const char simple_runtime_include[] = "\
#include \"random_inc.h\"\n\
";

#if 0
static const char platform_include[] = "\
#if defined(__AVR_ARCH__)\n\
#include \"platform_avr.h\"\n\
#elif defined (__MSP430__)\n\
#include \"platform_msp430.h\"\n\
#else\n\
#include \"platform_generic.h\"\n\
#endif\n\
";
#endif

static const char volatile_include[] = "\
/* To use wrapper functions, compile this program with -DWRAP_VOLATILES=1. */\n\
#include \"volatile_runtime.h\"\n\
Expand Down Expand Up @@ -379,13 +367,6 @@ OutputMgr::OutputHeader(int argc, char *argv[], unsigned long seed)
out << endl;
}

#if 0
#ifdef WIN32
out << "#include <stdint.h>" << endl;
#else
out << "#include <stdint.h>" << endl;
#endif
#endif
if (CGOptions::paranoid() && !CGOptions::concise())
out << "#include <assert.h>" << endl;

Expand Down

0 comments on commit 8ed6378

Please sign in to comment.