summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCraig Topper <craig.topper@gmail.com>2014-04-27 19:21:06 +0000
committerCraig Topper <craig.topper@gmail.com>2014-04-27 19:21:06 +0000
commit7e1ae6d9e00db092024730b3d36b6ff405a6e0bc (patch)
treed5ffa2ab27764bb587574f4c267df46b00e71fc7 /include
parent479c81774d53dcdd238c6f6374c3c39624f550fc (diff)
downloadllvm-7e1ae6d9e00db092024730b3d36b6ff405a6e0bc.tar.gz
llvm-7e1ae6d9e00db092024730b3d36b6ff405a6e0bc.tar.bz2
llvm-7e1ae6d9e00db092024730b3d36b6ff405a6e0bc.tar.xz
Convert one last signature of getNode to take an ArrayRef of SDUse.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207376 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/SelectionDAG.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/SelectionDAG.h b/include/llvm/CodeGen/SelectionDAG.h
index 57cee5b795..6238851ed2 100644
--- a/include/llvm/CodeGen/SelectionDAG.h
+++ b/include/llvm/CodeGen/SelectionDAG.h
@@ -607,8 +607,7 @@ public:
SDValue getNode(unsigned Opcode, SDLoc DL, EVT VT,
SDValue N1, SDValue N2, SDValue N3, SDValue N4,
SDValue N5);
- SDValue getNode(unsigned Opcode, SDLoc DL, EVT VT,
- const SDUse *Ops, unsigned NumOps);
+ SDValue getNode(unsigned Opcode, SDLoc DL, EVT VT, ArrayRef<SDUse> Ops);
SDValue getNode(unsigned Opcode, SDLoc DL, EVT VT,
ArrayRef<SDValue> Ops);
SDValue getNode(unsigned Opcode, SDLoc DL,