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:
Rafael Espindola
2014-02-18 22:05:46 +00:00
parent 25818a6e26
commit 1836fe5651
6 changed files with 389 additions and 360 deletions

View File

@@ -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.