diff options
author | Vikram S. Adve <vadve@cs.uiuc.edu> | 2001-10-17 23:55:16 +0000 |
---|---|---|
committer | Vikram S. Adve <vadve@cs.uiuc.edu> | 2001-10-17 23:55:16 +0000 |
commit | f43e3366efa9a3a9f54f886bd6022c2f003adf53 (patch) | |
tree | 2899b8e4f2c8ed5aba31e36a7227959fe1375f13 /lib/CodeGen/InstrSched/SchedGraph.h | |
parent | 85b46d6c6d2fa35c271b1fce7afa01546511c465 (diff) |
Separate VM instruction that generates the instructions that compute a value
from the value itself (the one causing an edge) because the latter may be
a temporary used within the instruction sequence for the VM instruction.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@858 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/InstrSched/SchedGraph.h')
-rw-r--r-- | lib/CodeGen/InstrSched/SchedGraph.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/CodeGen/InstrSched/SchedGraph.h b/lib/CodeGen/InstrSched/SchedGraph.h index 76a7663cf8..538590dccb 100644 --- a/lib/CodeGen/InstrSched/SchedGraph.h +++ b/lib/CodeGen/InstrSched/SchedGraph.h @@ -310,7 +310,8 @@ private: const TargetMachine& target); void addSSAEdge (SchedGraphNode* node, - const Value* val, + const Instruction* defVMInstr, + const Value* defValue, const TargetMachine& target); void addNonSSAEdgesForValue (const Instruction* instr, |