Skip to content

Commit ef0f197

Browse files
committed
Remove float-mm.c asm.js test
asm.js sees very low usage in the wild now that wasm has been shipping for a while and largely replaced it. Thus we don't cosider it worth optimization effort to improve asm.js performance going forward.
1 parent f8d60ba commit ef0f197

File tree

3 files changed

+1
-4832
lines changed

3 files changed

+1
-4832
lines changed

JetStreamDriver.js

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ function uiFriendlyDuration(time)
158158
const minutes = time.getMinutes();
159159
const seconds = time.getSeconds();
160160
const milliSeconds = time.getMilliseconds();
161-
const result = "" + minutes + ":";
161+
let result = "" + minutes + ":";
162162

163163
result = result + (seconds < 10 ? "0" : "") + seconds + ".";
164164
result = result + (milliSeconds < 10 ? "00" : (milliSeconds < 100 ? "0" : "")) + milliSeconds;
@@ -1542,15 +1542,6 @@ const testPlans = [
15421542
testGroup: RexBenchGroup
15431543
},
15441544
// Simple
1545-
{
1546-
name: "float-mm.c",
1547-
files: [
1548-
"./simple/float-mm.c.js"
1549-
],
1550-
iterations: 15,
1551-
worstCaseCount: 2,
1552-
testGroup: SimpleGroup
1553-
},
15541545
{
15551546
name: "hash-map",
15561547
files: [

simple/float-mm.c

Lines changed: 0 additions & 160 deletions
This file was deleted.

0 commit comments

Comments
 (0)