[llvm-commits] CVS: llvm/include/llvm/CodeGen/MachineInstr.h ScheduleDAG.h
Chris Lattner
lattner at cs.uiuc.edu
Wed May 24 10:04:33 PDT 2006
Changes in directory llvm/include/llvm/CodeGen:
MachineInstr.h updated: 1.181 -> 1.182
ScheduleDAG.h updated: 1.26 -> 1.27
---
Log message:
Patches to make the LLVM sources more -pedantic clean. Patch provided
by Anton Korobeynikov! This is a step towards closing PR786: http://llvm.cs.uiuc.edu/PR786 .
---
Diffs of the changes: (+2 -2)
MachineInstr.h | 2 +-
ScheduleDAG.h | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/include/llvm/CodeGen/MachineInstr.h
diff -u llvm/include/llvm/CodeGen/MachineInstr.h:1.181 llvm/include/llvm/CodeGen/MachineInstr.h:1.182
--- llvm/include/llvm/CodeGen/MachineInstr.h:1.181 Thu May 4 14:36:09 2006
+++ llvm/include/llvm/CodeGen/MachineInstr.h Wed May 24 12:04:03 2006
@@ -42,7 +42,7 @@
// Bit fields of the flags variable used for different operand properties
enum {
DEFFLAG = 0x01, // this is a def of the operand
- USEFLAG = 0x02, // this is a use of the operand
+ USEFLAG = 0x02 // this is a use of the operand
};
public:
Index: llvm/include/llvm/CodeGen/ScheduleDAG.h
diff -u llvm/include/llvm/CodeGen/ScheduleDAG.h:1.26 llvm/include/llvm/CodeGen/ScheduleDAG.h:1.27
--- llvm/include/llvm/CodeGen/ScheduleDAG.h:1.26 Sat May 13 00:53:16 2006
+++ llvm/include/llvm/CodeGen/ScheduleDAG.h Wed May 24 12:04:03 2006
@@ -41,7 +41,7 @@
enum HazardType {
NoHazard, // This instruction can be emitted at this cycle.
Hazard, // This instruction can't be emitted at this cycle.
- NoopHazard, // This instruction can't be emitted, and needs noops.
+ NoopHazard // This instruction can't be emitted, and needs noops.
};
/// getHazardType - Return the hazard type of emitting this node. There are
More information about the llvm-commits
mailing list