stub out a trivial constructor method.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74038 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2009-06-24 00:51:35 +00:00
parent b8be8b70a2
commit f4a9061b6b

View File

@ -116,7 +116,7 @@ namespace llvm {
/// createAsmStreamer - Create a machine code streamer which will print out
/// assembly for the native target, suitable for compiling with a native
/// assembler.
MCStreamer *createAsmStreamer(MCContext &Ctx, raw_ostream &OS);
inline MCStreamer *createAsmStreamer(MCContext &Ctx, raw_ostream &OS) { return 0; }
// FIXME: These two may end up getting rolled into a single
// createObjectStreamer interface, which implements the assembler backend, and