diff src/cpu/sparc/vm/frame_sparc.cpp @ 14676:d3f14809b051

8036146: make CPP interpreter build again Summary: fix build of CPP interpreter on x86 and sparc Reviewed-by: kvn
author roland
date Wed, 05 Mar 2014 15:14:25 +0100
parents 190899198332
children 92aa6797d639
line wrap: on
line diff
--- a/src/cpu/sparc/vm/frame_sparc.cpp	Wed Mar 05 02:41:57 2014 -0800
+++ b/src/cpu/sparc/vm/frame_sparc.cpp	Wed Mar 05 15:14:25 2014 +0100
@@ -827,6 +827,7 @@
   }
 
   if (is_interpreted_frame()) {
+#ifndef CC_INTERP
     DESCRIBE_FP_OFFSET(interpreter_frame_d_scratch_fp);
     DESCRIBE_FP_OFFSET(interpreter_frame_l_scratch_fp);
     DESCRIBE_FP_OFFSET(interpreter_frame_padding);
@@ -837,6 +838,7 @@
     if ((esp >= sp()) && (esp < fp())) {
       values.describe(-1, esp, "*Lesp");
     }
+#endif
   }
 
   if (!is_compiled_frame()) {