summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2003-05-24 01:08:43 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2003-05-24 01:08:43 +0000
commit12745c55e1d5a6e76d41684f1b507ea7c6b888ac (patch)
tree64da698ebab2adece89332a06fbff26858873cbc /include
parentf00ce8bc29c3194485b7251dd3e234cead10008e (diff)
downloadllvm-12745c55e1d5a6e76d41684f1b507ea7c6b888ac.tar.gz
llvm-12745c55e1d5a6e76d41684f1b507ea7c6b888ac.tar.bz2
llvm-12745c55e1d5a6e76d41684f1b507ea7c6b888ac.tar.xz
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
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Target/TargetInstrInfo.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/include/llvm/Target/TargetInstrInfo.h b/include/llvm/Target/TargetInstrInfo.h
index 30843ea287..806132e9d4 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;