Get rid of obsolete gen/llvmcompat.h

Not needed anymore since C++11.
This commit is contained in:
Martin 2018-01-12 20:20:43 +01:00
parent 9222e59b82
commit 27deb2ff8c
11 changed files with 55 additions and 116 deletions

View file

@ -185,7 +185,7 @@ llvm::FunctionType *DtoFunctionType(Type *type, IrFuncTy &irFty, Type *thistype,
abi->rewriteFunctionType(f, newIrFty);
// Now we can modify irFty safely.
irFty = llvm_move(newIrFty);
irFty = std::move(newIrFty);
// Finally build the actual LLVM function type.
llvm::SmallVector<llvm::Type *, 16> argtypes;