forked from OSchip/llvm-project
Update Kaleidoscope: Change headers
Reviewed By: JDevlieghere Differential Revision: https://reviews.llvm.org/D88141
This commit is contained in:
parent
c8f6c0f961
commit
ba950ad0a5
|
@ -1,11 +1,10 @@
|
|||
#include "llvm/ADT/STLExtras.h"
|
||||
#include <algorithm>
|
||||
#include <cctype>
|
||||
#include <cstdio>
|
||||
#include <cstdlib>
|
||||
#include <map>
|
||||
#include <memory>
|
||||
#include <string>
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
@ -300,8 +299,8 @@ static std::unique_ptr<ExprAST> ParseBinOpRHS(int ExprPrec,
|
|||
}
|
||||
|
||||
// Merge LHS/RHS.
|
||||
LHS = std::make_unique<BinaryExprAST>(BinOp, std::move(LHS),
|
||||
std::move(RHS));
|
||||
LHS =
|
||||
std::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue