[llvm-commits] CVS: llvm/include/llvm/Instruction.h

Misha Brukman brukman at cs.uiuc.edu
Mon Jul 28 11:54:02 PDT 2003


Changes in directory llvm/include/llvm:

Instruction.h updated: 1.42 -> 1.43

---
Log message:

Removed extra parenthesis and fixed spelling.


---
Diffs of the changes:

Index: llvm/include/llvm/Instruction.h
diff -u llvm/include/llvm/Instruction.h:1.42 llvm/include/llvm/Instruction.h:1.43
--- llvm/include/llvm/Instruction.h:1.42	Mon Jun 30 16:58:26 2003
+++ llvm/include/llvm/Instruction.h	Mon Jul 28 11:53:28 2003
@@ -79,7 +79,7 @@
 
   /// isAssociative - Return true if the instruction is associative:
   ///
-  ///   Associative operators satisfy:  x op (y op z) === (x op y) op z)
+  ///   Associative operators satisfy:  x op (y op z) === (x op y) op z
   ///
   /// In LLVM, the Add, Mul, And, Or, and Xor operators are associative, when
   /// not applied to floating point types.
@@ -89,7 +89,7 @@
 
   /// isCommutative - Return true if the instruction is commutative:
   ///
-  ///   Commutative operators satistify: (x op y) === (y op x)
+  ///   Commutative operators satisfy: (x op y) === (y op x)
   ///
   /// In LLVM, these are the associative operators, plus SetEQ and SetNE, when
   /// applied to any type.





More information about the llvm-commits mailing list