commit | fdeb393caefd0e169d3195892e8c220a1688372a | [log] [tgz] |
---|---|---|
author | Dan Gohman <gohman@apple.com> | Fri Jun 18 23:28:01 2010 +0000 |
committer | Dan Gohman <gohman@apple.com> | Fri Jun 18 23:28:01 2010 +0000 |
tree | 312318482d5af5306e9d2881f4bdc15f3b4664b2 | |
parent | 38f5140557af0adb295415a4f1bc60a1de2b1f0d [diff] [blame] |
Teach regular and fast isel to set dead flags on unused implicit defs on calls and similar instructions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106353 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/SelectionDAG/FastISel.cpp b/lib/CodeGen/SelectionDAG/FastISel.cpp index 5cb739e..d21ba23 100644 --- a/lib/CodeGen/SelectionDAG/FastISel.cpp +++ b/lib/CodeGen/SelectionDAG/FastISel.cpp
@@ -849,6 +849,7 @@ TD(*TM.getTargetData()), TII(*TM.getInstrInfo()), TLI(*TM.getTargetLowering()), + TRI(*TM.getRegisterInfo()), IsBottomUp(false) { }