summaryrefslogtreecommitdiff
path: root/include/llvm/Instruction.h
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2003-07-28 16:53:28 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2003-07-28 16:53:28 +0000
commit686e65fb65f97176e000c4d4cae82fc7b404ef9d (patch)
treeda82b64e552e656be854cddc142c04fdf6223584 /include/llvm/Instruction.h
parentebb20c51fa003192493a1718e37ce45a9e3998c5 (diff)
downloadllvm-686e65fb65f97176e000c4d4cae82fc7b404ef9d.tar.gz
llvm-686e65fb65f97176e000c4d4cae82fc7b404ef9d.tar.bz2
llvm-686e65fb65f97176e000c4d4cae82fc7b404ef9d.tar.xz
Removed extra parenthesis and fixed spelling.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7359 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Instruction.h')
-rw-r--r--include/llvm/Instruction.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Instruction.h b/include/llvm/Instruction.h
index 4011794025..d09c140e14 100644
--- a/include/llvm/Instruction.h
+++ b/include/llvm/Instruction.h
@@ -79,7 +79,7 @@ public:
/// 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 @@ public:
/// 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.