[llvm-commits] CVS: llvm/include/llvm/Target/TargetInstrInfo.h

Brian Gaeke gaeke at cs.uiuc.edu
Wed Feb 11 13:48:01 PST 2004


Changes in directory llvm/include/llvm/Target:

TargetInstrInfo.h updated: 1.53 -> 1.54

---
Log message:

Fix typos in comments.

---
Diffs of the changes:  (+2 -2)

Index: llvm/include/llvm/Target/TargetInstrInfo.h
diff -u llvm/include/llvm/Target/TargetInstrInfo.h:1.53 llvm/include/llvm/Target/TargetInstrInfo.h:1.54
--- llvm/include/llvm/Target/TargetInstrInfo.h:1.53	Sun Dec 28 11:35:08 2003
+++ llvm/include/llvm/Target/TargetInstrInfo.h	Wed Feb 11 13:47:43 2004
@@ -73,7 +73,7 @@
   const char *    Name;          // Assembly language mnemonic for the opcode.
   int             numOperands;   // Number of args; -1 if variable #args
   int             resultPos;     // Position of the result; -1 if no result
-  unsigned        maxImmedConst; // Largest +ve constant in IMMMED field or 0.
+  unsigned        maxImmedConst; // Largest +ve constant in IMMED field or 0.
   bool	          immedIsSignExtended; // Is IMMED field sign-extended? If so,
                                  //   smallest -ve value is -(maxImmedConst+1).
   unsigned        numDelaySlots; // Number of delay slots after instruction
@@ -261,7 +261,7 @@
   virtual bool constantFitsInImmedField(MachineOpCode opCode,
 					int64_t intValue) const;
   
-  // Return the largest +ve constant that can be held in the IMMMED field
+  // Return the largest positive constant that can be held in the IMMED field
   // of this machine instruction.
   // isSignExtended is set to true if the value is sign-extended before use
   // (this is true for all immediate fields in SPARC instructions).





More information about the llvm-commits mailing list