test/compiler/intrinsics/mathexact/NegExactILoadTest.java

Fri, 18 Oct 2013 10:41:56 +0200

author
rbackman
date
Fri, 18 Oct 2013 10:41:56 +0200
changeset 5997
59e8ad757e19
child 6152
9949533a8623
permissions
-rw-r--r--

8026844: Various Math functions needs intrinsification
Reviewed-by: kvn, twisti

rbackman@5997 1 /*
rbackman@5997 2 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
rbackman@5997 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
rbackman@5997 4 *
rbackman@5997 5 * This code is free software; you can redistribute it and/or modify it
rbackman@5997 6 * under the terms of the GNU General Public License version 2 only, as
rbackman@5997 7 * published by the Free Software Foundation.
rbackman@5997 8 *
rbackman@5997 9 * This code is distributed in the hope that it will be useful, but WITHOUT
rbackman@5997 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
rbackman@5997 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
rbackman@5997 12 * version 2 for more details (a copy is included in the LICENSE file that
rbackman@5997 13 * accompanied this code).
rbackman@5997 14 *
rbackman@5997 15 * You should have received a copy of the GNU General Public License version
rbackman@5997 16 * 2 along with this work; if not, write to the Free Software Foundation,
rbackman@5997 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
rbackman@5997 18 *
rbackman@5997 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
rbackman@5997 20 * or visit www.oracle.com if you need additional information or have any
rbackman@5997 21 * questions.
rbackman@5997 22 */
rbackman@5997 23
rbackman@5997 24 /*
rbackman@5997 25 * @test
rbackman@5997 26 * @bug 8026844
rbackman@5997 27 * @summary Test negExact
rbackman@5997 28 * @compile NegExactILoadTest.java Verify.java
rbackman@5997 29 * @run main NegExactILoadTest
rbackman@5997 30 *
rbackman@5997 31 */
rbackman@5997 32
rbackman@5997 33 public class NegExactILoadTest {
rbackman@5997 34 public static void main(String[] args) {
rbackman@5997 35 Verify.LoadTest.init();
rbackman@5997 36 Verify.LoadTest.verify(new Verify.UnaryToBinary(new Verify.NegExactI()));
rbackman@5997 37 }
rbackman@5997 38
rbackman@5997 39 }

mercurial