[llvm-commits] CVS: llvm/lib/Target/Sparc/Sparc.h SparcISelDAGToDAG.cpp SparcInstrInfo.h SparcSubtarget.cpp
Chris Lattner
lattner at cs.uiuc.edu
Wed May 24 10:04:35 PDT 2006
Changes in directory llvm/lib/Target/Sparc:
Sparc.h updated: 1.11 -> 1.12
SparcISelDAGToDAG.cpp updated: 1.93 -> 1.94
SparcInstrInfo.h updated: 1.8 -> 1.9
SparcSubtarget.cpp updated: 1.5 -> 1.6
---
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: (+4 -4)
Sparc.h | 2 +-
SparcISelDAGToDAG.cpp | 2 +-
SparcInstrInfo.h | 2 +-
SparcSubtarget.cpp | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
Index: llvm/lib/Target/Sparc/Sparc.h
diff -u llvm/lib/Target/Sparc/Sparc.h:1.11 llvm/lib/Target/Sparc/Sparc.h:1.12
--- llvm/lib/Target/Sparc/Sparc.h:1.11 Sat Feb 4 23:50:24 2006
+++ llvm/lib/Target/Sparc/Sparc.h Wed May 24 12:04:04 2006
@@ -75,7 +75,7 @@
FCC_UGE = 12+16, // Unordered or Greater or Equal
FCC_LE = 13+16, // Less or Equal
FCC_ULE = 14+16, // Unordered or Less or Equal
- FCC_O = 15+16, // Ordered
+ FCC_O = 15+16 // Ordered
};
}
Index: llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp
diff -u llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp:1.93 llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp:1.94
--- llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp:1.93 Fri May 12 12:31:21 2006
+++ llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp Wed May 24 12:04:04 2006
@@ -48,7 +48,7 @@
ITOF, // Int to FP within a FP register.
CALL, // A call instruction.
- RET_FLAG, // Return with a flag operand.
+ RET_FLAG // Return with a flag operand.
};
}
Index: llvm/lib/Target/Sparc/SparcInstrInfo.h
diff -u llvm/lib/Target/Sparc/SparcInstrInfo.h:1.8 llvm/lib/Target/Sparc/SparcInstrInfo.h:1.9
--- llvm/lib/Target/Sparc/SparcInstrInfo.h:1.8 Sat Feb 4 23:50:24 2006
+++ llvm/lib/Target/Sparc/SparcInstrInfo.h Wed May 24 12:04:04 2006
@@ -29,7 +29,7 @@
Store = (1<<2),
DelaySlot = (1<<3)
};
-};
+}
class SparcInstrInfo : public TargetInstrInfo {
const SparcRegisterInfo RI;
Index: llvm/lib/Target/Sparc/SparcSubtarget.cpp
diff -u llvm/lib/Target/Sparc/SparcSubtarget.cpp:1.5 llvm/lib/Target/Sparc/SparcSubtarget.cpp:1.6
--- llvm/lib/Target/Sparc/SparcSubtarget.cpp:1.5 Sat Feb 4 23:50:24 2006
+++ llvm/lib/Target/Sparc/SparcSubtarget.cpp Wed May 24 12:04:04 2006
@@ -40,4 +40,4 @@
// Unless explicitly enabled, disable the V9 instructions.
if (!EnableV9)
IsV9 = false;
-};
+}
More information about the llvm-commits
mailing list