search for: newdef

Displaying 3 results from an estimated 3 matches for "newdef".

Did you mean: newdev
2016 Mar 04
2
PHI node to different register class vs TailDuplication
...e register class of the PHI src is wider than the PHI def + // then we can't just use PHI src instead of PHI def in the cloned + // instruction. Instead we insert a copy, copying the PHI src to a + // register of the wanted register class. + if (!RC->hasSubClassEq(SrcRC)) { + unsigned NewDef = MRI->createVirtualRegister(RC); + + BuildMI(*PredBB, PredBB->instr_end(), DebugLoc(), + TII->get(TargetOpcode::COPY), NewDef).addReg(SrcReg); + SrcReg = NewDef; + } + LocalVRMap.insert(std::make_pair(DefReg, SrcReg)); Any thoughts on this? /Mikael
2000 Feb 02
3
Problem with nmbd??
I recently installed Samba-2.0.6 on my machine. I copied the smb.conf over from another, working machine that I just got rid of. Anyway, I can't seem to get things working. Here are some files: when I 'restart' nmb in SWAT ---(log.nmb): Netbios nameserver version 2.0.6 started. [2000/02/02 13:33:19, 1] nmbd/nmbd.c:main(747) Netbios nameserver version 2.0.6 started. Copyright
2012 Jun 22
2
editing pools
On Fedora 17 I used virsh pool-edit to change the directory of the default pool that virt-manager creates, and I noticed that my changes were discarded unless I made the changes with the pool stopped. Is that expected behavior? Dave