aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2007-10-25 12:28:12 +0000
committerDuncan Sands <baldrick@free.fr>2007-10-25 12:28:12 +0000
commitb36904be918b72cc4c714552d42d6a713f27bbf5 (patch)
tree4c6098cccdf6e8fa121dde1cdc976e6e415671e0
parent0e15dc26ec9fccbde6091309434da4004d9d14ae (diff)
downloadexternal_llvm-b36904be918b72cc4c714552d42d6a713f27bbf5.zip
external_llvm-b36904be918b72cc4c714552d42d6a713f27bbf5.tar.gz
external_llvm-b36904be918b72cc4c714552d42d6a713f27bbf5.tar.bz2
Fix comment typos.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43338 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/CodeGen/SelectionDAGNodes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h
index 8a0ff29..56f85f4 100644
--- a/include/llvm/CodeGen/SelectionDAGNodes.h
+++ b/include/llvm/CodeGen/SelectionDAGNodes.h
@@ -235,7 +235,7 @@ namespace ISD {
ADD, SUB, MUL, SDIV, UDIV, SREM, UREM,
// SMUL_LOHI/UMUL_LOHI - Multiply two integers of type iN, producing
- // a signed/unsigned value of type i[2*n], and return the full value as
+ // a signed/unsigned value of type i[2*N], and return the full value as
// two results, each of type iN.
SMUL_LOHI, UMUL_LOHI,
@@ -319,7 +319,7 @@ namespace ISD {
INSERT_SUBREG,
// MULHU/MULHS - Multiply high - Multiply two integers of type iN, producing
- // an unsigned/signed value of type i[2*n], then return the top part.
+ // an unsigned/signed value of type i[2*N], then return the top part.
MULHU, MULHS,
// Bitwise operators - logical and, logical or, logical xor, shift left,