1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 04:02:41 +01:00

Be more conservative with clustering f32 / f64 loads.

llvm-svn: 94254
This commit is contained in:
Evan Cheng 2010-01-22 23:49:11 +00:00
parent f703377447
commit 1093210d30

View File

@ -2990,6 +2990,8 @@ bool X86InstrInfo::shouldScheduleLoadsNear(SDNode *Load1, SDNode *Load2,
case MVT::i16:
case MVT::i32:
case MVT::i64:
case MVT::f32:
case MVT::f64:
if (NumLoads)
return false;
}