mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-10 18:34:09 +00:00
Fix a typo that led to a failure to correctly verify bitcast instructions.
Patch by Stephen Hines! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@161921 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
11a4fa4523
commit
c2de3ddb23
@ -1093,7 +1093,7 @@ void Verifier::visitBitCastInst(BitCastInst &I) {
|
||||
|
||||
// BitCast implies a no-op cast of type only. No bits change.
|
||||
// However, you can't cast pointers to anything but pointers.
|
||||
Assert1(DestTy->isPointerTy() == DestTy->isPointerTy(),
|
||||
Assert1(SrcTy->isPointerTy() == DestTy->isPointerTy(),
|
||||
"Bitcast requires both operands to be pointer or neither", &I);
|
||||
Assert1(SrcBitSize == DestBitSize, "Bitcast requires types of same width",&I);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user