[llvm-commits] [llvm] r45126 - /llvm/trunk/include/llvm/Target/TargetInstrInfo.h

2007-12-17 Thread Bill Wendling
Author: void Date: Mon Dec 17 15:53:30 2007 New Revision: 45126 URL: http://llvm.org/viewvc/llvm-project?rev=45126view=rev Log: Add hasSideEffects method to MachineInstrInfo class. Modified: llvm/trunk/include/llvm/Target/TargetInstrInfo.h Modified:

Re: [llvm-commits] [llvm] r45126 - /llvm/trunk/include/llvm/Target/TargetInstrInfo.h

2007-12-17 Thread Bill Wendling
On Dec 17, 2007 1:53 PM, Bill Wendling [EMAIL PROTECTED] wrote: Author: void Date: Mon Dec 17 15:53:30 2007 New Revision: 45126 URL: http://llvm.org/viewvc/llvm-project?rev=45126view=rev Log: Add hasSideEffects method to MachineInstrInfo class. s/MachineInstrInfo/TargetInstrInfo/ -bw

Re: [llvm-commits] [llvm] r45126 - /llvm/trunk/include/llvm/Target/TargetInstrInfo.h

2007-12-17 Thread Chris Lattner
On Dec 17, 2007, at 1:53 PM, Bill Wendling wrote: == --- llvm/trunk/include/llvm/Target/TargetInstrInfo.h (original) +++ llvm/trunk/include/llvm/Target/TargetInstrInfo.h Mon Dec 17 15:53:30 2007 @@ -314,6

Re: [llvm-commits] [llvm] r45126 - /llvm/trunk/include/llvm/Target/TargetInstrInfo.h

2007-12-17 Thread Bill Wendling
On Dec 17, 2007 3:15 PM, Chris Lattner [EMAIL PROTECTED] wrote: + /// hasSideEffects - Returns true if the instruction has side effects that are + /// not captured by any operands of the instruction or other flags. + bool hasSideEffects(MachineInstr *MI) const { How about