Remove // compileViaYul: also

This commit is contained in:
Daniel Kirchner
2022-05-19 20:23:28 +02:00
parent 788dc6b4c8
commit 58d21f1e9d
1267 changed files with 0 additions and 1267 deletions
@@ -14,6 +14,5 @@ function sum(uint[] memory arr) returns (uint result) {
using {sum} for uint[];
// ====
// compileViaYul: also
// ----
// f(uint256[]): 0x20, 3, 1, 2, 8 -> 11
@@ -18,7 +18,6 @@ contract C {
using {id, zero} for uint;
}
// ====
// compileViaYul: also
// ----
// f(uint256): 10 -> 10
// g(uint256): 10 -> 0
@@ -19,7 +19,6 @@ function zero(uint) pure returns (uint) {
}
// ====
// compileViaYul: also
// ----
// f(uint256): 10 -> 10
// g(uint256): 10 -> 0
@@ -22,7 +22,6 @@ function zero(uint) pure returns (uint) {
// ====
// compileViaYul: also
// ----
// f(uint256): 10 -> 10
// g(uint256): 10 -> 0
@@ -13,7 +13,6 @@ using {A.inc, f} for uint;
import {inc as f} from "A";
import "A" as A;
// ====
// compileViaYul: also
// ----
// f(uint256): 5 -> 12
// f(uint256): 10 -> 0x16
@@ -13,6 +13,5 @@ contract C is I {
function f() public pure returns (uint) { return 7; }
}
// ====
// compileViaYul: also
// ----
// x() -> 7
@@ -25,7 +25,6 @@ contract C {
import "A" as M;
// ====
// compileViaYul: also
// ----
// library: "A":L
// f(uint256): 5 -> 5
@@ -21,6 +21,5 @@ using {M.g, M.f} for uint;
import "B" as M;
// ====
// compileViaYul: also
// ----
// test(uint256,uint256): 1, 1 -> 9, 3
@@ -20,6 +20,5 @@ contract C {
}
}
// ====
// compileViaYul: also
// ----
// f() -> 11
@@ -33,6 +33,5 @@ contract C {
import {E, S, T} from "A";
// ====
// compileViaYul: also
// ----
// f() -> 1, 7, 9
@@ -15,6 +15,5 @@ contract C {
}
// ====
// compileViaYul: also
// ----
// f(uint256): 100 -> 111
@@ -38,7 +38,6 @@ contract D {
}
}
// ====
// compileViaYul: also
// ----
// library: "A":L
// test() -> 3
@@ -21,7 +21,6 @@ contract C {
import {T} from "A";
// ====
// compileViaYul: also
// ----
// library: "A":L
// f() -> 2, 1