mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
Embalm my ideas of how things should work. Not that
anyone will pay attention. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63155 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7009d24e81
commit
ab160cf371
@ -313,6 +313,7 @@ public:
|
||||
void setDesc(const TargetInstrDesc &tid) { TID = &tid; }
|
||||
|
||||
/// setDebugLoc - Replace current source information with new such.
|
||||
/// Avoid using this, the constructor argument is preferable.
|
||||
///
|
||||
void setDebugLoc(const DebugLoc dl) { debugLoc = dl; }
|
||||
|
||||
|
@ -1154,7 +1154,8 @@ public:
|
||||
/// getDebugLoc - Return the source location info.
|
||||
const DebugLoc getDebugLoc() const { return debugLoc; }
|
||||
|
||||
/// setDebugLoc - Set source location info.
|
||||
/// setDebugLoc - Set source location info. Try to avoid this, putting
|
||||
/// it in the constructor is preferable.
|
||||
void setDebugLoc(const DebugLoc dl) { debugLoc = dl; }
|
||||
|
||||
/// use_iterator - This class provides iterator support for SDUse
|
||||
|
Loading…
Reference in New Issue
Block a user