From 502829c8873899a9a2fb9e5e2601ca7778e0485d 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. llvm-svn: 243769 --- llvm/include/llvm/IR/Instructions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/IR/Instructions.h b/llvm/include/llvm/IR/Instructions.h index 36cd26e..4330f2f 100644 --- a/llvm/include/llvm/IR/Instructions.h +++ b/llvm/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()); -- 2.7.4