diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2003-05-24 01:08:43 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-05-24 01:08:43 +0000 |
commit | e2402c65d0e107afb49fb7fae12abc3011094f8c (patch) | |
tree | 6e3482bba977094a597d34ac476f882b046ea517 /llvm/lib/Target/X86/X86InstrInfo.cpp | |
parent | 0d817c4b2e03a05b17bc7ba98e6a3b31b88a32be (diff) | |
download | bcm5719-llvm-e2402c65d0e107afb49fb7fae12abc3011094f8c.tar.gz bcm5719-llvm-e2402c65d0e107afb49fb7fae12abc3011094f8c.zip |
Reword to remove reference to how things worked in the past.
llvm-svn: 6323
Diffstat (limited to 'llvm/lib/Target/X86/X86InstrInfo.cpp')
-rw-r--r-- | llvm/lib/Target/X86/X86InstrInfo.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/llvm/lib/Target/X86/X86InstrInfo.cpp b/llvm/lib/Target/X86/X86InstrInfo.cpp index 182798e23d7..b03a12078de 100644 --- a/llvm/lib/Target/X86/X86InstrInfo.cpp +++ b/llvm/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' |