summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCraig Topper <craig.topper@gmail.com>2014-04-27 19:20:57 +0000
committerCraig Topper <craig.topper@gmail.com>2014-04-27 19:20:57 +0000
commita7f892b33b453590e99f4e99ccb6b180db74339f (patch)
tree1c915ba3fb58ccf0bc35d75373ddd875f6711d68 /include
parente046664a0e67ffc5792437579ed1a671111bc649 (diff)
downloadllvm-a7f892b33b453590e99f4e99ccb6b180db74339f.tar.gz
llvm-a7f892b33b453590e99f4e99ccb6b180db74339f.tar.bz2
llvm-a7f892b33b453590e99f4e99ccb6b180db74339f.tar.xz
Convert SelectionDAG::getMergeValues to use ArrayRef.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207374 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/SelectionDAG.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/SelectionDAG.h b/include/llvm/CodeGen/SelectionDAG.h
index 0186d26c86..57cee5b795 100644
--- a/include/llvm/CodeGen/SelectionDAG.h
+++ b/include/llvm/CodeGen/SelectionDAG.h
@@ -747,7 +747,7 @@ public:
EVT MemVT, MachineMemOperand *MMO);
/// getMergeValues - Create a MERGE_VALUES node from the given operands.
- SDValue getMergeValues(const SDValue *Ops, unsigned NumOps, SDLoc dl);
+ SDValue getMergeValues(ArrayRef<SDValue> Ops, SDLoc dl);
/// getLoad - Loads are not normal binary operators: their result type is not
/// determined by their operands, and they produce a value AND a token chain.