projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c570487
)
fix typo
author
Chris Lattner
<sabre@nondot.org>
Sun, 8 Mar 2009 04:06:26 +0000
(
04:06
+0000)
committer
Chris Lattner
<sabre@nondot.org>
Sun, 8 Mar 2009 04:06:26 +0000
(
04:06
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66367
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/VMCore/Constants.cpp
patch
|
blob
|
history
diff --git
a/lib/VMCore/Constants.cpp
b/lib/VMCore/Constants.cpp
index f75fb63d7cb80fece6c8578167ad14cce337847f..0be2811e3548ff2eba5e8c1a309b7eb01e22f431 100644
(file)
--- a/
lib/VMCore/Constants.cpp
+++ b/
lib/VMCore/Constants.cpp
@@
-1995,7
+1995,7
@@
Constant *ConstantExpr::getBitCast(Constant *C, const Type *DstTy) {
unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits();
unsigned DstBitSize = DstTy->getPrimitiveSizeInBits();
#endif
- assert(SrcBitSize == DstBitSize && "BitCast requies types of same width");
+ assert(SrcBitSize == DstBitSize && "BitCast requi
r
es types of same width");
return getFoldedCast(Instruction::BitCast, C, DstTy);
}