Skip to content

Commit 502829c

Browse files
committed
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
1 parent 73932e5 commit 502829c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/include/llvm/IR/Instructions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3880,7 +3880,7 @@ class TerminatePadInst : public TerminatorInst {
38803880

38813881
public:
38823882
static TerminatePadInst *Create(LLVMContext &C, BasicBlock *BB = nullptr,
3883-
ArrayRef<Value *> Args = {},
3883+
ArrayRef<Value *> Args = None,
38843884
const Twine &NameStr = "",
38853885
Instruction *InsertBefore = nullptr) {
38863886
unsigned Values = unsigned(Args.size());

0 commit comments

Comments
 (0)