diff options
author | David Greene <greened@obbligato.org> | 2009-07-10 21:14:44 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2009-07-10 21:14:44 +0000 |
commit | 62fe47a33755719ab9c6e8c239e0dd01fc87e6f9 (patch) | |
tree | 3d0c98ada5d7952dc0723c6710bf0eeb54db2ef9 /lib/CodeGen/AsmStream.cpp | |
parent | a93e77073faf8547f8405919339f44cebdc74d11 (diff) |
Make changes suggested by Chris and eliminate newly-added raw_ostream
hooks as they're no longer needed.
The major change with this patch is to make formatted_raw_ostream usable
by any client of raw_ostream.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75283 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmStream.cpp')
-rw-r--r-- | lib/CodeGen/AsmStream.cpp | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/lib/CodeGen/AsmStream.cpp b/lib/CodeGen/AsmStream.cpp deleted file mode 100644 index 363f9c160e..0000000000 --- a/lib/CodeGen/AsmStream.cpp +++ /dev/null @@ -1,19 +0,0 @@ -//===-- llvm/CodeGen/AsmStream.cpp - AsmStream Framework --------*- C++ -*-===// -// -// The LLVM Compiler Infrastructure -// -// This file was developed by the LLVM research group and is distributed under -// the University of Illinois Open Source License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// -// -// This file contains instantiations of "standard" AsmOStreams. -// -//===----------------------------------------------------------------------===// - -#include "llvm/CodeGen/AsmStream.h" - -namespace llvm { - raw_asm_fd_ostream asmouts(STDOUT_FILENO, false); - raw_asm_fd_ostream asmerrs(STDERR_FILENO, false); -} |