# HG changeset patch # User tschatzl # Date 1488810794 -3600 # Node ID 26cf1145671235b401f8d48c6ab534c352129f58 # Parent bff6d23aa1e345b3ae74654bda22c284c65f4190 8175367: Wrong assert for UseCompressedOops in aarch64 Copy::conjoint_oops_atomic implementation Summary: Remove wrong check for UseCompressedOops Reviewed-by: aph diff -r bff6d23aa1e3 -r 26cf11456712 hotspot/src/os_cpu/linux_aarch64/vm/copy_linux_aarch64.inline.hpp --- a/hotspot/src/os_cpu/linux_aarch64/vm/copy_linux_aarch64.inline.hpp Sat Mar 04 15:56:22 2017 -0500 +++ b/hotspot/src/os_cpu/linux_aarch64/vm/copy_linux_aarch64.inline.hpp Mon Mar 06 15:33:14 2017 +0100 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2003, 2017, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2014, Red Hat Inc. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * @@ -159,7 +159,6 @@ } static void pd_conjoint_oops_atomic(oop* from, oop* to, size_t count) { - assert(!UseCompressedOops, "foo!"); assert(BytesPerLong == BytesPerOop, "jlongs and oops must be the same size"); _Copy_conjoint_jlongs_atomic((jlong*)from, (jlong*)to, count); }