diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-12-22 02:10:19 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-12-22 02:10:19 +0000 |
commit | 919b7aab2ee7e58d25930a915116c048be4f820f (patch) | |
tree | 5c8a85377abde16ab7a06ce8c5c59b921bc75654 /llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h | |
parent | 2f9443f422fab429b75e943ed556b2caf7e3520f (diff) | |
download | bcm5719-llvm-919b7aab2ee7e58d25930a915116c048be4f820f.tar.gz bcm5719-llvm-919b7aab2ee7e58d25930a915116c048be4f820f.zip |
Add more plumbing. This time in the LowerArguments and "get" functions which
return partial registers. This affected the back-end lowering code some.
Also patch up some places I missed before in the "get" functions.
llvm-svn: 91880
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h index b653c96de6c..c9c5f4f87c5 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h @@ -336,6 +336,8 @@ public: DebugLoc getCurDebugLoc() const { return CurDebugLoc; } void setCurDebugLoc(DebugLoc dl) { CurDebugLoc = dl; } + unsigned getSDNodeOrder() const { return SDNodeOrder; } + void CopyValueToVirtualRegister(Value *V, unsigned Reg); void visit(Instruction &I); |