mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-03-05 19:10:19 +00:00
Fix a typo that Anton noticed.
llvm-svn: 93563
This commit is contained in:
parent
dfde8cf532
commit
7b9900094e
@ -7579,7 +7579,7 @@ bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
|
||||
|
||||
bool X86TargetLowering::isZExtFree(const Type *Ty1, const Type *Ty2) const {
|
||||
// x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
|
||||
return Ty1->isInteger(64) && Ty2->isInteger(64) && Subtarget->is64Bit();
|
||||
return Ty1->isInteger(32) && Ty2->isInteger(64) && Subtarget->is64Bit();
|
||||
}
|
||||
|
||||
bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
|
||||
|
Loading…
x
Reference in New Issue
Block a user