~ubuntu-branches/ubuntu/jaunty/clamav/jaunty-backports

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/lib/CodeGen/Spiller.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-10-02 17:11:00 UTC
  • mfrom: (0.3.1 lucid-proposed)
  • Revision ID: james.westby@ubuntu.com-20101002171100-0erjjoucua6kw2pc
Tags: 0.96.3+dfsg-2ubuntu0.10.04.1~jaunty1
* Source backport for Jaunty
  - Change build-dep on libtdl-dev to libtdl7-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
439
439
        // reg.
440
440
        MachineBasicBlock *useMBB = useInst->getParent();
441
441
        MachineBasicBlock::iterator useItr(useInst);
442
 
        tii->copyRegToReg(*useMBB, next(useItr), li->reg, newVReg, trc, trc);
443
 
        MachineInstr *copyMI = next(useItr);
 
442
        tii->copyRegToReg(*useMBB, llvm::next(useItr), li->reg, newVReg, trc, trc);
 
443
        MachineInstr *copyMI = llvm::next(useItr);
444
444
        copyMI->addRegisterKilled(newVReg, tri);
445
445
        SlotIndex copyIdx = lis->InsertMachineInstrInMaps(copyMI);
446
446