< prev index next >

src/share/vm/opto/generateOptoStub.cpp

Print this page

        

@@ -46,11 +46,11 @@
                         bool pass_tls,
                         bool return_pc) {
   ResourceMark rm;
 
   const TypeTuple *jdomain = C->tf()->domain_sig();
-  const TypeTuple *jrange  = C->tf()->range();
+  const TypeTuple *jrange  = C->tf()->range_sig();
 
   // The procedure start
   StartNode* start = new StartNode(root(), jdomain);
   _gvn.set_type_bottom(start);
 

@@ -284,11 +284,11 @@
     ret = new ReturnNode(TypeFunc::Parms, if_null,
                          i_o(),
                          exit_memory,
                          frameptr(),
                          returnadr());
-    if (C->tf()->range()->cnt() > TypeFunc::Parms)
+    if (C->tf()->range_sig()->cnt() > TypeFunc::Parms)
       ret->add_req( map()->in(TypeFunc::Parms) );
     break;
   case 1:    // This is a fancy tail-call jump.  Jump to computed address.
     // Jump to new callee; leave old return address alone.
     ret = new TailCallNode(if_null,
< prev index next >