1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00

fix a wordo that gordon noticed :)

llvm-svn: 45896
This commit is contained in:
Chris Lattner 2008-01-12 00:53:16 +00:00
parent 0242c393d1
commit 5e112f44c8

View File

@ -761,7 +761,7 @@ bool X86InstrInfo::isInvariantLoad(MachineInstr *MI) const {
// This code cares about loads from three cases: constant pool entries, // This code cares about loads from three cases: constant pool entries,
// invariant argument slots, and global stubs. In order to handle these cases // invariant argument slots, and global stubs. In order to handle these cases
// for all of the myriad of X86 instructions, we just scan for a CP/FI/GV // for all of the myriad of X86 instructions, we just scan for a CP/FI/GV
// operand and base are analysis on it. This is safe because the address of // operand and base our analysis on it. This is safe because the address of
// none of these three cases is ever used as anything other than a load base // none of these three cases is ever used as anything other than a load base
// and X86 doesn't have any instructions that load from multiple places. // and X86 doesn't have any instructions that load from multiple places.