From 4c43d5bdfa4394ba453fbf07147324d72f081b92 Mon Sep 17 00:00:00 2001 From: David Majnemer Date: Fri, 31 Jul 2015 18:13:25 +0000 Subject: [PATCH] Attempt to appease the MSVC build bots They don't seem to care for initializing an ArrayRef with a std::initializer_list. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@243769 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/IR/Instructions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/IR/Instructions.h b/include/llvm/IR/Instructions.h index 36cd26e4e11..4330f2f87a7 100644 --- a/include/llvm/IR/Instructions.h +++ b/include/llvm/IR/Instructions.h @@ -3880,7 +3880,7 @@ protected: public: static TerminatePadInst *Create(LLVMContext &C, BasicBlock *BB = nullptr, - ArrayRef Args = {}, + ArrayRef Args = None, const Twine &NameStr = "", Instruction *InsertBefore = nullptr) { unsigned Values = unsigned(Args.size());