# HG changeset patch # User Doug Simon # Date 1371649420 -7200 # Node ID 9062da84cd75f6380786dc26572f2704c4f3fb1c # Parent 36bcc10e01c0b1da67d30a5bd56b3611443b7a29 removed redundant import of platform specific codeInstaller_*.hpp files diff -r 36bcc10e01c0 -r 9062da84cd75 src/share/vm/graal/graalCodeInstaller.cpp --- a/src/share/vm/graal/graalCodeInstaller.cpp Wed Jun 19 15:37:32 2013 +0200 +++ b/src/share/vm/graal/graalCodeInstaller.cpp Wed Jun 19 15:43:40 2013 +0200 @@ -35,23 +35,18 @@ #include "code/vmreg.hpp" #ifdef TARGET_ARCH_x86 -# include "codeInstaller_x86.hpp" # include "vmreg_x86.inline.hpp" #endif #ifdef TARGET_ARCH_sparc -# include "codeInstaller_sparc.hpp" # include "vmreg_sparc.inline.hpp" #endif #ifdef TARGET_ARCH_zero -# include "codeInstaller_zero.hpp" # include "vmreg_zero.inline.hpp" #endif #ifdef TARGET_ARCH_arm -# include "codeInstaller_arm.hpp" # include "vmreg_arm.inline.hpp" #endif #ifdef TARGET_ARCH_ppc -# include "codeInstaller_ppc.hpp" # include "vmreg_ppc.inline.hpp" #endif