Attempt to appease the MSVC build bots
authorDavid Majnemer <david.majnemer@gmail.com>
Fri, 31 Jul 2015 18:13:25 +0000 (18:13 +0000)
committerDavid Majnemer <david.majnemer@gmail.com>
Fri, 31 Jul 2015 18:13:25 +0000 (18:13 +0000)
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

index 36cd26e4e110e74d884cc16cb304984157d19e22..4330f2f87a72afc3fabeed1f9975246e26086697 100644 (file)
@@ -3880,7 +3880,7 @@ protected:
 
 public:
   static TerminatePadInst *Create(LLVMContext &C, BasicBlock *BB = nullptr,
-                                    ArrayRef<Value *> Args = {},
+                                    ArrayRef<Value *> Args = None,
                                     const Twine &NameStr = "",
                                     Instruction *InsertBefore = nullptr) {
     unsigned Values = unsigned(Args.size());