From ad66526ede74d6c064dca30c0c2bc4cc2622b284 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Wed, 13 Feb 2008 22:32:12 +0000 Subject: [PATCH] Fix a typo in a comment. llvm-svn: 47097 --- llvm/include/llvm/ADT/APInt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/ADT/APInt.h b/llvm/include/llvm/ADT/APInt.h index 6d4b926cefaf..fdb1fa47f5b6 100644 --- a/llvm/include/llvm/ADT/APInt.h +++ b/llvm/include/llvm/ADT/APInt.h @@ -123,7 +123,7 @@ class APInt { uint32_t wordBits = BitWidth % APINT_BITS_PER_WORD; if (wordBits == 0) // If all bits are used, we want to leave the value alone. This also - // avoids the undefined behavior of >> when the shfit is the same size as + // avoids the undefined behavior of >> when the shift is the same size as // the word size (64). return *this;