From: David Majnemer Date: Fri, 31 Jul 2015 18:13:25 +0000 (+0000) Subject: Attempt to appease the MSVC build bots X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4c43d5bdfa4394ba453fbf07147324d72f081b92;p=llvm 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 --- 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());