[JS IR BE] Fix lowering Long comprising operators
This commit is contained in:
-17
@@ -119,13 +119,6 @@ public class GenerateRangesCodegenTestData {
|
||||
.replace("\n", LineSeparator.getSystemLineSeparator().getSeparatorString());
|
||||
}
|
||||
|
||||
private static final List<String> IGNORED_FOR_JS_BACKEND = Collections.emptyList();
|
||||
|
||||
private static final List<String> IGNORED_FOR_JS_IR_BACKEND = Arrays.asList("inexactDownToMinValue.kt",
|
||||
"inexactToMaxValue.kt");
|
||||
|
||||
private static final List<String> IGNORED_FOR_NATIVE_BACKEND = Collections.emptyList();
|
||||
|
||||
private static final List<String> WHITELISTED_FOR_JVM_IR_BACKEND = Collections.singletonList("overflowZeroDownToMaxValue.kt");
|
||||
|
||||
private static void writeIgnoreBackendDirective(PrintWriter out, String backendName) {
|
||||
@@ -150,16 +143,6 @@ public class GenerateRangesCodegenTestData {
|
||||
writeIgnoreBackendDirective(out, "JVM_IR");
|
||||
}
|
||||
|
||||
if (IGNORED_FOR_JS_BACKEND.contains(file.getName())) {
|
||||
writeIgnoreBackendDirective(out, "JS");
|
||||
}
|
||||
if (IGNORED_FOR_JS_IR_BACKEND.contains(file.getName())) {
|
||||
writeIgnoreBackendDirective(out, "JS_IR");
|
||||
}
|
||||
if (IGNORED_FOR_NATIVE_BACKEND.contains(file.getName())) {
|
||||
writeIgnoreBackendDirective(out, "NATIVE");
|
||||
}
|
||||
|
||||
out.println("// Auto-generated by " + GenerateRangesCodegenTestData.class.getName() + ". DO NOT EDIT!");
|
||||
out.println("// WITH_RUNTIME");
|
||||
out.println();
|
||||
|
||||
Reference in New Issue
Block a user