Remove some extraneous newlines.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29492 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-08-03 00:42:26 +00:00
parent 32501a0e33
commit 58d63567ea

View File

@ -3679,8 +3679,8 @@ void DAGISelEmitter::run(std::ostream &OS) {
OS << "#if defined(__GNUC__) && \\\n";
OS << " ((__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 4)))\n";
OS << "#define NOINLINE __attribute__((noinline))\n";
OS << "#else\n\n";
OS << "#define NOINLINE\n\n";
OS << "#else\n";
OS << "#define NOINLINE\n";
OS << "#endif\n\n";
OS << "// Instance var to keep track of multiply used nodes that have \n"