aboutsummaryrefslogtreecommitdiff
path: root/test/opt
diff options
context:
space:
mode:
authorattila <none@none>2014-08-20 10:25:28 +0200
committerattila <none@none>2014-08-20 10:25:28 +0200
commit1e4829218e17571eeb9d45aa6e08aac68b7efffd (patch)
treeefcc393fdb941e7b0acea187b1b4cab639e019e3 /test/opt
parentf58cd5fdb57524ee83d5ca6224a480010b5469a3 (diff)
downloadjdk8u_nashorn-1e4829218e17571eeb9d45aa6e08aac68b7efffd.tar.gz
8044638: Tidy up Nashorn codebase for code standards
8055199: Tidy up Nashorn codebase for code standards (August 2014) Reviewed-by: lagergren, sundar
Diffstat (limited to 'test/opt')
-rw-r--r--test/opt/add.js12
-rw-r--r--test/opt/add_constant.js12
-rw-r--r--test/opt/add_reuse_callsite.js14
-rw-r--r--test/opt/add_revert2.js14
-rw-r--r--test/opt/cascade_specialize.js10
5 files changed, 31 insertions, 31 deletions
diff --git a/test/opt/add.js b/test/opt/add.js
index 6e43ae0c..3e675713 100644
--- a/test/opt/add.js
+++ b/test/opt/add.js
@@ -1,21 +1,21 @@
/*
* Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
- *
+ *
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
- *
+ *
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
- *
+ *
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
@@ -23,7 +23,7 @@
/**
* Example of an add function that gets specialized to doubles
- * if run with --optimize flag set
+ * if run with --optimize flag set
*/
function add(a,b) {
@@ -34,7 +34,7 @@ function add(a,b) {
function bench() {
var sum = 1;
for (var x = 0 ; x < 10e8/2 ; x ++) {
- sum *= add(x,x + 1);
+ sum *= add(x,x + 1);
}
return sum;
}
diff --git a/test/opt/add_constant.js b/test/opt/add_constant.js
index 0f2ae8b0..334ea0f9 100644
--- a/test/opt/add_constant.js
+++ b/test/opt/add_constant.js
@@ -1,21 +1,21 @@
/*
* Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
- *
+ *
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
- *
+ *
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
- *
+ *
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
@@ -23,7 +23,7 @@
/**
* Example of an add function that gets specialized to doubles
- * if run with --optimize flag set
+ * if run with --optimize flag set
*/
function add(a,b) {
@@ -34,7 +34,7 @@ function add(a,b) {
function bench() {
var sum = 1;
for (var x = 0 ; x < 5e7 ; x++) {
- sum *= add(x, 17);
+ sum *= add(x, 17);
}
return sum;
}
diff --git a/test/opt/add_reuse_callsite.js b/test/opt/add_reuse_callsite.js
index 35398233..9d04e3f5 100644
--- a/test/opt/add_reuse_callsite.js
+++ b/test/opt/add_reuse_callsite.js
@@ -1,21 +1,21 @@
/*
* Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
- *
+ *
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
- *
+ *
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
- *
+ *
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
@@ -23,7 +23,7 @@
/**
* Example of an add function that gets specialized to doubles
- * if run with --optimize flag set
+ * if run with --optimize flag set
*/
function add(a,b) {
@@ -34,10 +34,10 @@ function add(a,b) {
function bench() {
var sum = 1;
for (var x = 0 ; x < 5e7 ; x++) {
- sum *= add(x,x + 1);
+ sum *= add(x,x + 1);
}
for (var x = 0; x < 5e7 ; x++) {
- sum *= add(x + 2, x + 3);
+ sum *= add(x + 2, x + 3);
}
return sum;
}
diff --git a/test/opt/add_revert2.js b/test/opt/add_revert2.js
index 6ea36c5d..b7ea1bb6 100644
--- a/test/opt/add_revert2.js
+++ b/test/opt/add_revert2.js
@@ -1,21 +1,21 @@
/*
* Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
- *
+ *
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
- *
+ *
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
- *
+ *
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
@@ -23,7 +23,7 @@
/**
* Example of an add function that gets specialized to doubles
- * if run with --optimize flag set
+ * if run with --optimize flag set
*/
function add(a,b) {
@@ -34,8 +34,8 @@ function add(a,b) {
function bench() {
var sum = 1;
for (var x = 0 ; x < 5e7 ; x++) {
- sum *= add(x, 17);
- sum *= add(x, x); //can use same revert as 17?
+ sum *= add(x, 17);
+ sum *= add(x, x); //can use same revert as 17?
}
return sum;
}
diff --git a/test/opt/cascade_specialize.js b/test/opt/cascade_specialize.js
index 7b5d66c2..12e41f04 100644
--- a/test/opt/cascade_specialize.js
+++ b/test/opt/cascade_specialize.js
@@ -1,21 +1,21 @@
/*
* Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
- *
+ *
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
- *
+ *
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
- *
+ *
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
@@ -37,4 +37,4 @@ function test() {
}
test();
-
+