commit | 2ce7f2068f13566f5a70ee779e3bb83a6cb8d942 | [log] [tgz] |
---|---|---|
author | Dan Gohman <gohman@apple.com> | Fri Dec 05 05:45:42 2008 +0000 |
committer | Dan Gohman <gohman@apple.com> | Fri Dec 05 05:45:42 2008 +0000 |
tree | 9a38d3f956f0b19e7dbfd89acb758b582c4d75c5 | |
parent | 4c0d95178010c8788129b392ab6a1c62484f1620 [diff] [blame] |
Drop the reg argument to isRegReDefinedByTwoAddr, which was redundant. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60586 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/PostRASchedulerList.cpp b/lib/CodeGen/PostRASchedulerList.cpp index b19525c..5ee6ed0 100644 --- a/lib/CodeGen/PostRASchedulerList.cpp +++ b/lib/CodeGen/PostRASchedulerList.cpp
@@ -478,7 +478,7 @@ if (Reg == 0) continue; if (!MO.isDef()) continue; // Ignore two-addr defs. - if (MI->isRegReDefinedByTwoAddr(Reg, i)) continue; + if (MI->isRegReDefinedByTwoAddr(i)) continue; DefIndices[Reg] = Count; KillIndices[Reg] = -1;