diff options
Diffstat (limited to 'lib/CodeGen/AsmStream.cpp')
-rw-r--r-- | lib/CodeGen/AsmStream.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/CodeGen/AsmStream.cpp b/lib/CodeGen/AsmStream.cpp new file mode 100644 index 0000000000..4e9c56140d --- /dev/null +++ b/lib/CodeGen/AsmStream.cpp @@ -0,0 +1,21 @@ +//===-- 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" + +#include <unistd.h> + +namespace llvm { + raw_asm_fd_ostream asmouts(STDOUT_FILENO, false); + raw_asm_fd_ostream asmerrs(STDERR_FILENO, false); +} |