summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCraig Topper <craig.topper@gmail.com>2014-04-16 06:10:51 +0000
committerCraig Topper <craig.topper@gmail.com>2014-04-16 06:10:51 +0000
commit5422dfb5b00370373e280df1ce619ffd0eafe912 (patch)
tree39c3cbbbb541ade92dc049eea6ca9b31893d499e /include
parent695aa80f079dd93c685be559a60f02afb499480f (diff)
downloadllvm-5422dfb5b00370373e280df1ce619ffd0eafe912.tar.gz
llvm-5422dfb5b00370373e280df1ce619ffd0eafe912.tar.bz2
llvm-5422dfb5b00370373e280df1ce619ffd0eafe912.tar.xz
Convert SelectionDAG::getVTList to use ArrayRef
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@206357 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 16d1864b60..b827c5147a 100644
--- a/include/llvm/CodeGen/SelectionDAG.h
+++ b/include/llvm/CodeGen/SelectionDAG.h
@@ -392,7 +392,7 @@ public:
SDVTList getVTList(EVT VT1, EVT VT2);
SDVTList getVTList(EVT VT1, EVT VT2, EVT VT3);
SDVTList getVTList(EVT VT1, EVT VT2, EVT VT3, EVT VT4);
- SDVTList getVTList(const EVT *VTs, unsigned NumVTs);
+ SDVTList getVTList(ArrayRef<EVT> VTs);
//===--------------------------------------------------------------------===//
// Node creation methods.