mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-03 08:41:44 +00:00
Make the Kaleidoscope Orc examples -Wdeprecated clean by avoiding copying some AST nodes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@249703 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0317b8efaf
commit
e6bb1eaae5
@ -782,7 +782,7 @@ Value *BinaryExprAST::IRGen(IRGenContext &C) const {
|
||||
// Special case '=' because we don't want to emit the LHS as an expression.
|
||||
if (Op == '=') {
|
||||
// Assignment requires the LHS to be an identifier.
|
||||
auto LHSVar = static_cast<VariableExprAST&>(*LHS);
|
||||
auto &LHSVar = static_cast<VariableExprAST &>(*LHS);
|
||||
// Codegen the RHS.
|
||||
Value *Val = RHS->IRGen(C);
|
||||
if (!Val) return nullptr;
|
||||
|
@ -781,7 +781,7 @@ Value *BinaryExprAST::IRGen(IRGenContext &C) const {
|
||||
// Special case '=' because we don't want to emit the LHS as an expression.
|
||||
if (Op == '=') {
|
||||
// Assignment requires the LHS to be an identifier.
|
||||
auto LHSVar = static_cast<VariableExprAST&>(*LHS);
|
||||
auto &LHSVar = static_cast<VariableExprAST &>(*LHS);
|
||||
// Codegen the RHS.
|
||||
Value *Val = RHS->IRGen(C);
|
||||
if (!Val) return nullptr;
|
||||
|
@ -781,7 +781,7 @@ Value *BinaryExprAST::IRGen(IRGenContext &C) const {
|
||||
// Special case '=' because we don't want to emit the LHS as an expression.
|
||||
if (Op == '=') {
|
||||
// Assignment requires the LHS to be an identifier.
|
||||
auto LHSVar = static_cast<VariableExprAST&>(*LHS);
|
||||
auto &LHSVar = static_cast<VariableExprAST &>(*LHS);
|
||||
// Codegen the RHS.
|
||||
Value *Val = RHS->IRGen(C);
|
||||
if (!Val) return nullptr;
|
||||
|
@ -781,7 +781,7 @@ Value *BinaryExprAST::IRGen(IRGenContext &C) const {
|
||||
// Special case '=' because we don't want to emit the LHS as an expression.
|
||||
if (Op == '=') {
|
||||
// Assignment requires the LHS to be an identifier.
|
||||
auto LHSVar = static_cast<VariableExprAST&>(*LHS);
|
||||
auto &LHSVar = static_cast<VariableExprAST &>(*LHS);
|
||||
// Codegen the RHS.
|
||||
Value *Val = RHS->IRGen(C);
|
||||
if (!Val) return nullptr;
|
||||
|
Loading…
x
Reference in New Issue
Block a user