Fix missing ;s from 66d4c2ddd9

This commit is contained in:
Matt Pharr
2012-06-28 12:04:58 -07:00
parent 95d8f76ec3
commit a91e4e7981

View File

@@ -2147,9 +2147,9 @@ bool CWriter::doInitialization(llvm::Module &M) {
Out << "#endif\n\n";
if (g->opt.fastMath) {
Out << "#define ISPC_FAST_MATH 1\n"
Out << "#define ISPC_FAST_MATH 1\n";
} else {
Out << "#undef ISPC_FAST_MATH\n"
Out << "#undef ISPC_FAST_MATH\n";
}
Out << "#include \"" << includeName << "\"\n";