Skip to content

Commit 8970676

Browse files
committed
[mlir] Rename files
1 parent 8b3e545 commit 8970676

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

libsolidity/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,10 +231,10 @@ set(mlir_sources
231231
codegen/mlir/Target/EVM/Util.cpp
232232
codegen/mlir/Target/EVM/BytecodeGen.cpp
233233
codegen/mlir/Target/EVM/TypeConverter.cpp
234-
codegen/mlir/Target/EVM/SolToStandard.cpp
234+
codegen/mlir/Target/EVM/SolToYul.cpp
235235
codegen/mlir/Target/EVM/YulToStandard.cpp
236236
codegen/mlir/Target/EraVM/Util.cpp
237-
codegen/mlir/Target/EraVM/SolToStandard.cpp
237+
codegen/mlir/Target/EraVM/YulToStandard.cpp
238238
)
239239

240240
set(mlir_sol_dialect_sources

libsolidity/codegen/mlir/SolToStandardPass.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121

2222
#include "libsolidity/codegen/mlir/Passes.h"
2323
#include "libsolidity/codegen/mlir/Sol/Sol.h"
24-
#include "libsolidity/codegen/mlir/Target/EVM/SolToStandard.h"
24+
#include "libsolidity/codegen/mlir/Target/EVM/SolToYul.h"
2525
#include "libsolidity/codegen/mlir/Target/EVM/Util.h"
26-
#include "libsolidity/codegen/mlir/Target/EraVM/SolToStandard.h"
2726
#include "libsolidity/codegen/mlir/Target/EraVM/Util.h"
27+
#include "libsolidity/codegen/mlir/Target/EraVM/YulToStandard.h"
2828
#include "libsolidity/codegen/mlir/Yul/Yul.h"
2929
#include "mlir/Dialect/ControlFlow/IR/ControlFlow.h"
3030
#include "mlir/Dialect/LLVMIR/LLVMDialect.h"

libsolidity/codegen/mlir/Target/EVM/SolToStandard.cpp renamed to libsolidity/codegen/mlir/Target/EVM/SolToYul.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
// SPDX-License-Identifier: GPL-3.0
1717

18-
#include "libsolidity/codegen/mlir/Target/EVM/SolToStandard.h"
18+
#include "libsolidity/codegen/mlir/Target/EVM/SolToYul.h"
1919
#include "libsolidity/codegen/CompilerUtils.h"
2020
#include "libsolidity/codegen/mlir/Sol/Sol.h"
2121
#include "libsolidity/codegen/mlir/Target/EVM/Util.h"

libsolidity/codegen/mlir/Target/EVM/TypeConverter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
//
2121

2222
#include "libsolidity/codegen/mlir/Sol/Sol.h"
23-
#include "libsolidity/codegen/mlir/Target/EVM/SolToStandard.h"
23+
#include "libsolidity/codegen/mlir/Target/EVM/SolToYul.h"
2424
#include "mlir/Dialect/LLVMIR/LLVMTypes.h"
2525

2626
using namespace mlir;

libsolidity/codegen/mlir/Target/EVM/YulToStandard.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// SPDX-License-Identifier: GPL-3.0
1717

1818
//
19-
// EVM specific lowering of yul ops in the sol dialect
19+
// EVM specific lowering of yul dialect
2020
//
2121

2222
#include "mlir/Transforms/DialectConversion.h"

libsolidity/codegen/mlir/Target/EraVM/SolToStandard.cpp renamed to libsolidity/codegen/mlir/Target/EraVM/YulToStandard.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515

1616
// SPDX-License-Identifier: GPL-3.0
1717

18-
#include "libsolidity/codegen/mlir/Target/EraVM/SolToStandard.h"
18+
#include "libsolidity/codegen/mlir/Target/EraVM/YulToStandard.h"
1919
#include "libsolidity/codegen/mlir/Sol/Sol.h"
20-
#include "libsolidity/codegen/mlir/Target/EVM/SolToStandard.h"
20+
#include "libsolidity/codegen/mlir/Target/EVM/SolToYul.h"
2121
#include "libsolidity/codegen/mlir/Target/EraVM/Util.h"
2222
#include "libsolidity/codegen/mlir/Util.h"
2323
#include "libsolidity/codegen/mlir/Yul/Yul.h"

libsolidity/codegen/mlir/Target/EraVM/SolToStandard.h renamed to libsolidity/codegen/mlir/Target/EraVM/YulToStandard.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// SPDX-License-Identifier: GPL-3.0
1717

1818
//
19-
// EraVM specific lowering of sol dialect
19+
// EraVM specific lowering of yul dialect
2020
//
2121

2222
#pragma once

0 commit comments

Comments
 (0)