< prev index next >

src/hotspot/cpu/ppc/sharedRuntime_ppc.cpp

Print this page
*** 53,10 ***
--- 53,13 ---
  #endif
  #ifdef COMPILER2
  #include "opto/ad.hpp"
  #include "opto/runtime.hpp"
  #endif
+ #if INCLUDE_SHENANDOAHGC
+ #include "gc/shenandoah/shenandoahRuntime.hpp"
+ #endif
  
  #include <alloca.h>
  
  #define __ masm->
  

*** 3833,5 ***
--- 3836,12 ---
                                    oop_maps, false);
    return stub;
  }
  
  #endif // INCLUDE_JFR
+ 
+ #if INCLUDE_SHENANDOAHGC
+ RuntimeStub* SharedRuntime::generate_shenandoah_stub(StubId stub_id) {
+   assert(UseShenandoahGC, "Only generate when Shenandoah is enabled");
+   return nullptr;
+ }
+ #endif
< prev index next >