[WebAssemby] Clean up an obsolete comment.

The comment is present inside the body of GetVRegDef.

llvm-svn: 283153
This commit is contained in:
Dan Gohman 2016-10-03 22:32:21 +00:00
parent 1f49329e81
commit ffc184bb1d
1 changed files with 1 additions and 2 deletions

View File

@ -747,8 +747,7 @@ bool WebAssemblyRegStackify::runOnMachineFunction(MachineFunction &MF) {
if (TargetRegisterInfo::isPhysicalRegister(Reg))
continue;
// Identify the definition for this register at this point. Most
// registers are in SSA form here so we try a quick MRI query first.
// Identify the definition for this register at this point.
MachineInstr *Def = GetVRegDef(Reg, Insert, MRI, LIS);
if (!Def)
continue;