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 | 4c17de983f586bc85e7ee850dc4b6ad5b6e3420a (patch) | |
tree | 3d0c98ada5d7952dc0723c6710bf0eeb54db2ef9 /lib/CodeGen | |
parent | f41184f76022e9c791e80355387974d6fb830864 (diff) | |
download | external_llvm-4c17de983f586bc85e7ee850dc4b6ad5b6e3420a.zip external_llvm-4c17de983f586bc85e7ee850dc4b6ad5b6e3420a.tar.gz external_llvm-4c17de983f586bc85e7ee850dc4b6ad5b6e3420a.tar.bz2 |
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')
-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 363f9c1..0000000 --- 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); -} |