diff options
author | Dan Gohman <dan433584@gmail.com> | 2016-10-03 22:32:21 +0000 |
---|---|---|
committer | Dan Gohman <dan433584@gmail.com> | 2016-10-03 22:32:21 +0000 |
commit | ffc184bb1dd8a0f0815f12272286d24a2adefcc1 (patch) | |
tree | e30aac87783e23db7f0c13f783504621645425da | |
parent | 1f49329e81fd11c357d45b457ba2e8eb28df1288 (diff) | |
download | bcm5719-llvm-ffc184bb1dd8a0f0815f12272286d24a2adefcc1.tar.gz bcm5719-llvm-ffc184bb1dd8a0f0815f12272286d24a2adefcc1.zip |
[WebAssemby] Clean up an obsolete comment.
The comment is present inside the body of GetVRegDef.
llvm-svn: 283153
-rw-r--r-- | llvm/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp b/llvm/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp index 4591f0f17b7..1b717658efb 100644 --- a/llvm/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp +++ b/llvm/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp @@ -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; |