src/hotspot/share/classfile/classListParser.cpp
changeset 50625 d9753e3db0c6
parent 50206 adec398d9051
child 51057 13ed0d538b89
--- a/src/hotspot/share/classfile/classListParser.cpp	Tue Jun 19 09:34:39 2018 +0200
+++ b/src/hotspot/share/classfile/classListParser.cpp	Tue Jun 19 09:43:53 2018 +0200
@@ -274,8 +274,8 @@
 // This function is used for loading classes for customized class loaders
 // during archive dumping.
 InstanceKlass* ClassListParser::load_class_from_source(Symbol* class_name, TRAPS) {
-#if !(defined(_LP64) && (defined(LINUX)|| defined(SOLARIS) || defined(AIX)))
-  // The only supported platforms are: (1) Linux/64-bit; (2) Solaris/64-bit; (3) AIX/64-bit
+#if !(defined(_LP64) && (defined(LINUX)|| defined(SOLARIS)))
+  // The only supported platforms are: (1) Linux/64-bit and (2) Solaris/64-bit
   //
   // This #if condition should be in sync with the areCustomLoadersSupportedForCDS
   // method in test/lib/jdk/test/lib/Platform.java.