Skip to content

Commit

Permalink
[tests] adjust
Browse files Browse the repository at this point in the history
  • Loading branch information
Simn committed Mar 26, 2023
1 parent e856e79 commit 10301c8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/optimization/src/issues/Issue10765.hx
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ private class Complex {
class Issue10765 {
@:js('
var buffer = new ArrayBuffer(80);
var this1 = new DataView(buffer,0,buffer.byteLength);
var array = this1;
var array = new DataView(buffer,0,buffer.byteLength);
var real = array.getFloat32(0);
var imag = array.getFloat32(4);
array.setFloat32(0,real + real);
Expand Down

0 comments on commit 10301c8

Please sign in to comment.