mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-24 23:28:41 +00:00
Rename a DebugLoc variable to DbgLoc and a DataLayout to DL.
This is quiet a bit less confusing now that TargetData was renamed DataLayout. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201606 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -51,9 +51,9 @@ protected:
|
||||
MachineRegisterInfo &MRI;
|
||||
MachineFrameInfo &MFI;
|
||||
MachineConstantPool &MCP;
|
||||
DebugLoc DL;
|
||||
DebugLoc DbgLoc;
|
||||
const TargetMachine &TM;
|
||||
const DataLayout &TD;
|
||||
const DataLayout &DL;
|
||||
const TargetInstrInfo &TII;
|
||||
const TargetLowering &TLI;
|
||||
const TargetRegisterInfo &TRI;
|
||||
@@ -87,7 +87,7 @@ public:
|
||||
void startNewBlock();
|
||||
|
||||
/// Return current debug location information.
|
||||
DebugLoc getCurDebugLoc() const { return DL; }
|
||||
DebugLoc getCurDebugLoc() const { return DbgLoc; }
|
||||
|
||||
/// Do "fast" instruction selection for function arguments and append machine
|
||||
/// instructions to the current block. Return true if it is successful.
|
||||
|
Reference in New Issue
Block a user