8156190: [ppc] Fix build after "8151268: Wire up the x86 _vectorizedMismatch stub routine in C1"
Summary: New function was placed within other function.
Reviewed-by: mdoerr
--- a/hotspot/src/cpu/ppc/vm/c1_LIRGenerator_ppc.cpp Thu May 05 18:14:51 2016 -0700
+++ b/hotspot/src/cpu/ppc/vm/c1_LIRGenerator_ppc.cpp Fri May 06 09:10:47 2016 +0200
@@ -1426,10 +1426,10 @@
ShouldNotReachHere();
}
}
+}
- void LIRGenerator::do_vectorizedMismatch(Intrinsic* x) {
- fatal("vectorizedMismatch intrinsic is not implemented on this platform");
- }
+void LIRGenerator::do_vectorizedMismatch(Intrinsic* x) {
+ fatal("vectorizedMismatch intrinsic is not implemented on this platform");
}
void LIRGenerator::do_update_CRC32C(Intrinsic* x) {