mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-31 08:16:47 +00:00 
			
		
		
		
	This has a few advantages: * Only targets that use a MCTargetStreamer have to worry about it. * There is never a MCTargetStreamer without a MCStreamer, so we can use a reference. * A MCTargetStreamer can talk to the MCStreamer in its constructor. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200129 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			26 lines
		
	
	
		
			688 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			688 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| //===-- PPCTargetStreamer.h - PPC Target Streamer --s-----------*- C++ -*--===//
 | |
| //
 | |
| //                     The LLVM Compiler Infrastructure
 | |
| //
 | |
| // This file is distributed under the University of Illinois Open Source
 | |
| // License. See LICENSE.TXT for details.
 | |
| //
 | |
| //===----------------------------------------------------------------------===//
 | |
| 
 | |
| #ifndef PPCTARGETSTREAMER_H
 | |
| #define PPCTARGETSTREAMER_H
 | |
| 
 | |
| #include "llvm/MC/MCStreamer.h"
 | |
| 
 | |
| namespace llvm {
 | |
| class PPCTargetStreamer : public MCTargetStreamer {
 | |
| public:
 | |
|   PPCTargetStreamer(MCStreamer &S);
 | |
|   virtual ~PPCTargetStreamer();
 | |
|   virtual void emitTCEntry(const MCSymbol &S) = 0;
 | |
|   virtual void emitMachine(StringRef CPU) = 0;
 | |
| };
 | |
| }
 | |
| 
 | |
| #endif
 |