mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Reword to remove reference to how things worked in the past.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6323 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f00ce8bc29
commit
12745c55e1
@ -280,10 +280,9 @@ public:
|
||||
///
|
||||
virtual MachineInstr* createNOPinstr() const = 0;
|
||||
|
||||
/// isNOPinstr - since we no longer have a special NOP opcode, we need to know
|
||||
/// if a given instruction is interpreted as an `official' NOP instr, i.e.,
|
||||
/// there may be more than one way to `do nothing' but only one canonical
|
||||
/// way to slack off.
|
||||
/// isNOPinstr - not having a special NOP opcode, we need to know if a given
|
||||
/// instruction is interpreted as an `official' NOP instr, i.e., there may be
|
||||
/// more than one way to `do nothing' but only one canonical way to slack off.
|
||||
///
|
||||
virtual bool isNOPinstr(const MachineInstr &MI) const = 0;
|
||||
|
||||
|
@ -113,10 +113,9 @@ struct UltraSparcInstrInfo : public TargetInstrInfo {
|
||||
return BuildMI(V9::SETHI, 2).addReg(SparcIntRegClass::g0).addZImm(0);
|
||||
}
|
||||
|
||||
/// isNOPinstr - since we no longer have a special NOP opcode, we need to know
|
||||
/// if a given instruction is interpreted as an `official' NOP instr, i.e.,
|
||||
/// there may be more than one way to `do nothing' but only one canonical
|
||||
/// way to slack off.
|
||||
/// isNOPinstr - not having a special NOP opcode, we need to know if a given
|
||||
/// instruction is interpreted as an `official' NOP instr, i.e., there may be
|
||||
/// more than one way to `do nothing' but only one canonical way to slack off.
|
||||
///
|
||||
bool isNOPinstr(const MachineInstr &MI) const {
|
||||
// Make sure the instruction is EXACTLY `sethi g0, 0'
|
||||
|
@ -48,10 +48,9 @@ MachineInstr* X86InstrInfo::createNOPinstr() const {
|
||||
}
|
||||
|
||||
|
||||
// isNOPinstr - since we no longer have a special NOP opcode, we need to know
|
||||
// if a given instruction is interpreted as an `official' NOP instr, i.e.,
|
||||
// there may be more than one way to `do nothing' but only one canonical
|
||||
// way to slack off.
|
||||
/// isNOPinstr - not having a special NOP opcode, we need to know if a given
|
||||
/// instruction is interpreted as an `official' NOP instr, i.e., there may be
|
||||
/// more than one way to `do nothing' but only one canonical way to slack off.
|
||||
//
|
||||
bool X86InstrInfo::isNOPinstr(const MachineInstr &MI) const {
|
||||
// Make sure the instruction is EXACTLY `xchg ax, ax'
|
||||
|
@ -154,10 +154,9 @@ public:
|
||||
///
|
||||
MachineInstr* createNOPinstr() const;
|
||||
|
||||
/// isNOPinstr - since we no longer have a special NOP opcode, we need to know
|
||||
/// if a given instruction is interpreted as an `official' NOP instr, i.e.,
|
||||
/// there may be more than one way to `do nothing' but only one canonical
|
||||
/// way to slack off.
|
||||
/// isNOPinstr - not having a special NOP opcode, we need to know if a given
|
||||
/// instruction is interpreted as an `official' NOP instr, i.e., there may be
|
||||
/// more than one way to `do nothing' but only one canonical way to slack off.
|
||||
///
|
||||
bool isNOPinstr(const MachineInstr &MI) const;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user