[llvm-commits] [llvm] r74038 - /llvm/trunk/include/llvm/MC/MCStreamer.h
Chris Lattner
sabre at nondot.org
Tue Jun 23 17:51:35 PDT 2009
Author: lattner
Date: Tue Jun 23 19:51:35 2009
New Revision: 74038
URL: http://llvm.org/viewvc/llvm-project?rev=74038&view=rev
Log:
stub out a trivial constructor method.
Modified:
llvm/trunk/include/llvm/MC/MCStreamer.h
Modified: llvm/trunk/include/llvm/MC/MCStreamer.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/MC/MCStreamer.h?rev=74038&r1=74037&r2=74038&view=diff
==============================================================================
--- llvm/trunk/include/llvm/MC/MCStreamer.h (original)
+++ llvm/trunk/include/llvm/MC/MCStreamer.h Tue Jun 23 19:51:35 2009
@@ -116,7 +116,7 @@
/// 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
More information about the llvm-commits
mailing list