From: Chris Lattner Date: Tue, 12 Oct 2004 16:21:18 +0000 (+0000) Subject: Don't emit the method into the llvm namespace, let the #includer decide where it... X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=9d990a01a9d747325325a766afe647309dacce66;p=oota-llvm.git Don't emit the method into the llvm namespace, let the #includer decide where it goes git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16934 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/TableGen/AsmWriterEmitter.cpp b/utils/TableGen/AsmWriterEmitter.cpp index a2cc21ded5d..3c3243833a5 100644 --- a/utils/TableGen/AsmWriterEmitter.cpp +++ b/utils/TableGen/AsmWriterEmitter.cpp @@ -27,7 +27,6 @@ static bool isIdentChar(char C) { void AsmWriterEmitter::run(std::ostream &O) { EmitSourceFileHeader("Assembly Writer Source Fragment", O); - O << "namespace llvm {\n\n"; CodeGenTarget Target; Record *AsmWriter = Target.getAsmWriter(); @@ -140,5 +139,4 @@ void AsmWriterEmitter::run(std::ostream &O) { O << " }\n" " return true;\n" "}\n"; - O << "} // End llvm namespace \n"; }