< prev index next >

src/hotspot/cpu/aarch64/templateInterpreterGenerator_aarch64.cpp

Print this page

        

@@ -1067,11 +1067,11 @@
  *   int java.util.zip.CRC32C.updateDirectByteBuffer(int crc, long buf, int off, int end)
  * Unlike CRC32, CRC32C does not have any methods marked as native
  * CRC32C also uses an "end" variable instead of the length variable CRC32 uses
  */
 address TemplateInterpreterGenerator::generate_CRC32C_updateBytes_entry(AbstractInterpreter::MethodKind kind) {
-  if (UseCRC32Intrinsics) {
+  if (UseCRC32CIntrinsics) {
     address entry = __ pc();
 
     // Prepare jump to stub using parameters from the stack
     const Register crc = c_rarg0; // initial crc
     const Register buf = c_rarg1; // source java byte array address
< prev index next >