You are viewing a plain text version of this content. The canonical link for it is here.
Posted to bcel-dev@jakarta.apache.org by md...@apache.org on 2003/09/03 09:41:22 UTC

cvs commit: jakarta-bcel/xdocs faq.xml

mdahm       2003/09/03 00:41:22

  Modified:    xdocs    faq.xml
  Log:
  verifier
  
  Revision  Changes    Path
  1.7       +4 -2      jakarta-bcel/xdocs/faq.xml
  
  Index: faq.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-bcel/xdocs/faq.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- faq.xml	2 Sep 2003 15:14:38 -0000	1.6
  +++ faq.xml	3 Sep 2003 07:41:22 -0000	1.7
  @@ -41,12 +41,12 @@
         <b>Q: </b> (Typically for users of Xalan (XSLTC)) I'm getting
   
       <pre>
  -    ...
       ClassGenException: Branch target offset too large for short
       </pre>
   
        when compiling large files.
         <br/>
  +
         <b>A: </b> The answer lies in internal limitations of the JVM,
         branch instruction like goto can not address offsets larger than
         a short integer, i.e. offsets >= 32767.<br/>
  @@ -68,7 +68,9 @@
         <b>Q:</b> I get a verification error, what can I do?
         <br/>
         <b>A:</b> Use the JustIce verifier that comes together with BCEL
  -      to get more detailed information.
  +      to get more detailed information:
  +       <pre>
  +       java org.apache.bcel.verifier.Verifier &lt;your class&gt;</pre>
       </p>
       
       </section>