[clang] 5f4c89e - Fix unsigned typos (#76670)
via cfe-commits
cfe-commits at lists.llvm.org
Sat Jan 27 22:20:12 PST 2024
Author: Rageking8
Date: 2024-01-27T22:20:08-08:00
New Revision: 5f4c89edd0ade97ab3e2d6df5375974f4b975d58
URL: https://github.com/llvm/llvm-project/commit/5f4c89edd0ade97ab3e2d6df5375974f4b975d58
DIFF: https://github.com/llvm/llvm-project/commit/5f4c89edd0ade97ab3e2d6df5375974f4b975d58.diff
LOG: Fix unsigned typos (#76670)
Added:
Modified:
clang/test/Analysis/additive-op-on-sym-int-expr.c
llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTypeUtilities.h
llvm/test/MC/AArch64/neon-diagnostics.s
llvm/test/MC/AArch64/neon-scalar-shift-imm.s
llvm/test/MC/Disassembler/AArch64/neon-instructions.txt
mlir/docs/Dialects/Linalg/OpDSL.md
mlir/python/mlir/dialects/linalg/opdsl/lang/comprehension.py
Removed:
################################################################################
diff --git a/clang/test/Analysis/additive-op-on-sym-int-expr.c b/clang/test/Analysis/additive-op-on-sym-int-expr.c
index bd951c4443a1be2..a268baf0a5f18c6 100644
--- a/clang/test/Analysis/additive-op-on-sym-int-expr.c
+++ b/clang/test/Analysis/additive-op-on-sym-int-expr.c
@@ -59,7 +59,7 @@ void testMin(int i, long l) {
clang_analyzer_dumpL(l - intMin); // expected-warning-re {{(reg_${{[0-9]+}}<long l>) + 2147483648 }} instead of - -2147483648
}
-void changingToUnsinged(unsigned u, int i) {
+void changingToUnsigned(unsigned u, int i) {
unsigned c = u + (unsigned)i;
unsigned d = u - (unsigned)i;
if (i == -1) {
@@ -89,7 +89,7 @@ void extendingToSigned(long l, int i) {
}
}
-void extendingToUnigned(unsigned long ul, int i) {
+void extendingToUnsigned(unsigned long ul, int i) {
unsigned long c = ul + (unsigned long)i;
unsigned long d = ul - (unsigned long)i;
if (i == -1) {
diff --git a/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTypeUtilities.h b/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTypeUtilities.h
index 18018dfc6d6fb9b..486cf264d13e2f7 100644
--- a/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTypeUtilities.h
+++ b/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTypeUtilities.h
@@ -46,7 +46,7 @@ inline bool isRefType(wasm::ValType Type) {
// Convert ValType or a list/signature of ValTypes to a string.
-// Convert an unsinged integer, which can be among wasm::ValType enum, to its
+// Convert an unsigned integer, which can be among wasm::ValType enum, to its
// type name string. If the input is not within wasm::ValType, returns
// "invalid_type".
const char *anyTypeToString(unsigned Type);
diff --git a/llvm/test/MC/AArch64/neon-diagnostics.s b/llvm/test/MC/AArch64/neon-diagnostics.s
index 481a5ddd6a83f9c..9a0445131ddf7c6 100644
--- a/llvm/test/MC/AArch64/neon-diagnostics.s
+++ b/llvm/test/MC/AArch64/neon-diagnostics.s
@@ -4877,7 +4877,7 @@
// CHECK-ERROR: ^
//----------------------------------------------------------------------
-// Scalar Unigned Rounding Shift Right (Immediate)
+// Scalar Unsigned Rounding Shift Right (Immediate)
//----------------------------------------------------------------------
urshr d20, d23, #99
diff --git a/llvm/test/MC/AArch64/neon-scalar-shift-imm.s b/llvm/test/MC/AArch64/neon-scalar-shift-imm.s
index 96cb815eafa8161..db8e21a17a1d36f 100644
--- a/llvm/test/MC/AArch64/neon-scalar-shift-imm.s
+++ b/llvm/test/MC/AArch64/neon-scalar-shift-imm.s
@@ -24,7 +24,7 @@
// CHECK: srshr d19, d18, #7 // encoding: [0x53,0x26,0x79,0x5f]
//----------------------------------------------------------------------
-// Scalar Unigned Rounding Shift Right (Immediate)
+// Scalar Unsigned Rounding Shift Right (Immediate)
//----------------------------------------------------------------------
urshr d20, d23, #31
diff --git a/llvm/test/MC/Disassembler/AArch64/neon-instructions.txt b/llvm/test/MC/Disassembler/AArch64/neon-instructions.txt
index ff7dedce444a4db..952ead99f92f76f 100644
--- a/llvm/test/MC/Disassembler/AArch64/neon-instructions.txt
+++ b/llvm/test/MC/Disassembler/AArch64/neon-instructions.txt
@@ -1829,7 +1829,7 @@
0x53,0x26,0x79,0x5f
#----------------------------------------------------------------------
-# Scalar Unigned Rounding Shift Right (Immediate)
+# Scalar Unsigned Rounding Shift Right (Immediate)
#----------------------------------------------------------------------
# CHECK: urshr d20, d23, #31
0xf4,0x26,0x61,0x7f
diff --git a/mlir/docs/Dialects/Linalg/OpDSL.md b/mlir/docs/Dialects/Linalg/OpDSL.md
index 5c4c8b4e1880aeb..9d324d8c538ac77 100644
--- a/mlir/docs/Dialects/Linalg/OpDSL.md
+++ b/mlir/docs/Dialects/Linalg/OpDSL.md
@@ -291,7 +291,7 @@ The following examples illustrate the lowering of signed and unsigned functions:
* cast_unsigned(I32 -> I64) -> `arith.ExtUIOp`
* cast_unsigned(F32 -> I32) -> `arith.FPToUIOp`
* max_signed -> `arith.MaxSIOp`
-* max_unsinged -> `arith.MaxUIOp`
+* max_unsigned -> `arith.MaxUIOp`
Not all functions are applicable for all numeric types, and on mismatch, op
verification will fail.
diff --git a/mlir/python/mlir/dialects/linalg/opdsl/lang/comprehension.py b/mlir/python/mlir/dialects/linalg/opdsl/lang/comprehension.py
index d9698e8ab867e43..23d6d26b7e294c6 100644
--- a/mlir/python/mlir/dialects/linalg/opdsl/lang/comprehension.py
+++ b/mlir/python/mlir/dialects/linalg/opdsl/lang/comprehension.py
@@ -318,7 +318,7 @@ class BinaryFn:
Examples:
- max -> `arith.MaxSIOp`
- - max_unsinged -> `arith.MaxUIOp`
+ - max_unsigned -> `arith.MaxUIOp`
"""
add = BinaryFnType("add")
More information about the cfe-commits
mailing list