/**
 * @test
 * @bug 6757316
 * @summary load_constant() produces a wrong long constant, with high a low words swapped
 * @run main/othervm -Xcomp Test6757316
 */

public class Test6757316 {
    public static void main(String[] args) {
        long[] arr = {
            0x11111111aaaaaaaaL,
            0xaaaaaaaa11111111L,
            0x11111111aaaaaaaaL,
            0xaaaaaaaa11111111L
        };
        if (arr[0] == arr[1]) {
            throw new InternalError();
        }
    }
}
