SubExactLNonConstantTest.java revision 11833:1cbffa2beba6
1125204Sharti/*
2125204Sharti * Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
3125204Sharti * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4125204Sharti *
5125204Sharti * This code is free software; you can redistribute it and/or modify it
6125204Sharti * under the terms of the GNU General Public License version 2 only, as
7125204Sharti * published by the Free Software Foundation.
8125204Sharti *
9125204Sharti * This code is distributed in the hope that it will be useful, but WITHOUT
10125204Sharti * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11125204Sharti * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12125204Sharti * version 2 for more details (a copy is included in the LICENSE file that
13125204Sharti * accompanied this code).
14125204Sharti *
15125204Sharti * You should have received a copy of the GNU General Public License version
16125204Sharti * 2 along with this work; if not, write to the Free Software Foundation,
17125204Sharti * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18125204Sharti *
19125204Sharti * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20125204Sharti * or visit www.oracle.com if you need additional information or have any
21125204Sharti * questions.
22125204Sharti */
23125204Sharti
24125204Sharti/*
25125204Sharti * @test
26125204Sharti * @bug 8026844
27125204Sharti * @bug 8027353
28125204Sharti * @summary Test non constant subtractExact
29125204Sharti * @library /test/lib /
30125204Sharti * @modules java.base/jdk.internal.misc
31125204Sharti *          java.management
32125204Sharti *
33125204Sharti * @run main compiler.intrinsics.mathexact.SubExactLNonConstantTest
34125204Sharti */
35125204Sharti
36125204Shartipackage compiler.intrinsics.mathexact;
37125204Sharti
38125204Shartipublic class SubExactLNonConstantTest {
39125204Sharti    public static void main(String[] args) {
40125204Sharti        Verify.NonConstantLongTest.verify(new Verify.SubExactL());
41125204Sharti    }
42125204Sharti}
43125204Sharti