Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 497298 | Differences between
and this patch

Collapse All | Expand All

(-)llvm/trunk/lib/Target/X86/X86ISelLowering.cpp (-1 / +1 lines)
Lines 15340-15346 Link Here
15340
15340
15341
  unsigned MOVOpc = Subtarget->hasFp256() ? X86::VMOVAPSmr : X86::MOVAPSmr;
15341
  unsigned MOVOpc = Subtarget->hasFp256() ? X86::VMOVAPSmr : X86::MOVAPSmr;
15342
  // In the XMM save block, save all the XMM argument registers.
15342
  // In the XMM save block, save all the XMM argument registers.
15343
  for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
15343
  for (int i = 3, e = MI->getNumOperands() - 1; i != e; ++i) {
15344
    int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
15344
    int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
15345
    MachineMemOperand *MMO =
15345
    MachineMemOperand *MMO =
15346
      F->getMachineMemOperand(
15346
      F->getMachineMemOperand(

Return to bug 497298