[JS IR BE] Fix lowering Long comprising operators

This commit is contained in:
Svyatoslav Kuzmich
2019-01-27 22:00:47 +03:00
parent 5bcd974944
commit ab3eb06a62
7 changed files with 28 additions and 34 deletions
@@ -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();