Nullstone Logo

COMPANY
Home
Contacts
Customers
Testimonials

PRODUCTS
Overview
NULLSTONE for C
NULLSTONE for Java
Technical Overview

SUPPORT
Release Notes
Download
PGP Information
Service Report
Write Us

INFORMATION
Performance Results
Glossary of Terms

RELATED LINKS
Compiler Connection
Compiler Jobs

Previous Up Next
Branch Elimination

Eliminate a branch to a branch.

Example:

In the code fragment below, the branch to L1 and then to L2 can be replaced with a single branch to L2.

      goto L1;
    
      /* other code */
    
    L1:
      goto L2;
    

Below is the code fragment after branch elimination.

      goto L2;
    
      /* other code */
    
    L1:
      goto L2;
    

© 1990-2012 Nullstone Corporation. All Rights Reserved.