mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-30 16:17:05 +00:00 
			
		
		
		
	The naming was a mish-mash of old and new style. Update to be consistent with the new. NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@237594 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			26 lines
		
	
	
		
			909 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			909 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| //===-- PPCMachineFunctionInfo.cpp - Private data used for PowerPC --------===//
 | |
| //
 | |
| //                     The LLVM Compiler Infrastructure
 | |
| //
 | |
| // This file is distributed under the University of Illinois Open Source
 | |
| // License. See LICENSE.TXT for details.
 | |
| //
 | |
| //===----------------------------------------------------------------------===//
 | |
| 
 | |
| #include "PPCMachineFunctionInfo.h"
 | |
| #include "llvm/IR/DataLayout.h"
 | |
| #include "llvm/MC/MCContext.h"
 | |
| #include "llvm/Target/TargetMachine.h"
 | |
| #include "llvm/Target/TargetSubtargetInfo.h"
 | |
| 
 | |
| using namespace llvm;
 | |
| 
 | |
| void PPCFunctionInfo::anchor() { }
 | |
| 
 | |
| MCSymbol *PPCFunctionInfo::getPICOffsetSymbol() const {
 | |
|   const DataLayout *DL = MF.getTarget().getDataLayout();
 | |
|   return MF.getContext().getOrCreateSymbol(Twine(DL->getPrivateGlobalPrefix()) +
 | |
|                                            Twine(MF.getFunctionNumber()) +
 | |
|                                            "$poff");
 | |
| }
 |