summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/SelectionDAGISel.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-01-13 17:58:35 +0000
committerChris Lattner <sabre@nondot.org>2005-01-13 17:58:35 +0000
commit8a496fcffdcba757412fc5cc6c772260ccfde000 (patch)
treed403b25ab3f206810f7cc5de6f97ec0b4c33e156 /include/llvm/CodeGen/SelectionDAGISel.h
parent41c56c03f7464c94bac11e56046f014d49f5bcf4 (diff)
downloadllvm-8a496fcffdcba757412fc5cc6c772260ccfde000.tar.gz
llvm-8a496fcffdcba757412fc5cc6c772260ccfde000.tar.bz2
llvm-8a496fcffdcba757412fc5cc6c772260ccfde000.tar.xz
Add a new node type, add comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19525 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/SelectionDAGISel.h')
-rw-r--r--include/llvm/CodeGen/SelectionDAGISel.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGISel.h b/include/llvm/CodeGen/SelectionDAGISel.h
index 5fc6f31cd6..77fd05ac65 100644
--- a/include/llvm/CodeGen/SelectionDAGISel.h
+++ b/include/llvm/CodeGen/SelectionDAGISel.h
@@ -21,6 +21,7 @@
namespace llvm {
class SelectionDAG;
class SelectionDAGLowering;
+ class SDOperand;
class SSARegMap;
class MachineBasicBlock;
class MachineFunction;
@@ -49,8 +50,8 @@ public:
virtual void InstructionSelectBasicBlock(SelectionDAG &SD) = 0;
- void CopyValueToVirtualRegister(SelectionDAGLowering &SDL,
- Value *V, unsigned Reg);
+ SDOperand CopyValueToVirtualRegister(SelectionDAGLowering &SDL,
+ Value *V, unsigned Reg);
void SelectBasicBlock(BasicBlock *BB, MachineFunction &MF,
FunctionLoweringInfo &FuncInfo);