From 12745c55e1d5a6e76d41684f1b507ea7c6b888ac Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Sat, 24 May 2003 01:08:43 +0000 Subject: [PATCH] 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 --- include/llvm/Target/TargetInstrInfo.h | 7 +++---- lib/Target/SparcV9/SparcV9Internals.h | 7 +++---- lib/Target/X86/X86InstrInfo.cpp | 7 +++---- lib/Target/X86/X86InstrInfo.h | 7 +++---- 4 files changed, 12 insertions(+), 16 deletions(-) diff --git a/include/llvm/Target/TargetInstrInfo.h b/include/llvm/Target/TargetInstrInfo.h index 30843ea287e..806132e9d41 100644 --- a/include/llvm/Target/TargetInstrInfo.h +++ b/include/llvm/Target/TargetInstrInfo.h @@ -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; diff --git a/lib/Target/SparcV9/SparcV9Internals.h b/lib/Target/SparcV9/SparcV9Internals.h index 0ad163c0815..ec04d3b8d2c 100644 --- a/lib/Target/SparcV9/SparcV9Internals.h +++ b/lib/Target/SparcV9/SparcV9Internals.h @@ -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' diff --git a/lib/Target/X86/X86InstrInfo.cpp b/lib/Target/X86/X86InstrInfo.cpp index 182798e23d7..b03a12078de 100644 --- a/lib/Target/X86/X86InstrInfo.cpp +++ b/lib/Target/X86/X86InstrInfo.cpp @@ -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' diff --git a/lib/Target/X86/X86InstrInfo.h b/lib/Target/X86/X86InstrInfo.h index 8dacf97b498..66fd0beae81 100644 --- a/lib/Target/X86/X86InstrInfo.h +++ b/lib/Target/X86/X86InstrInfo.h @@ -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; -- 2.40.0