Changeset a1a83e5e in mainline for boot


Ignore:
Timestamp:
2009-04-21T20:16:12Z (16 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ab1861a
Parents:
5646813
Message:

Replace non-canonical B instructions with BA %xcc.
Fix one occurrence of deprecated Bicc instruction.

Location:
boot/arch/sparc64/loader
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • boot/arch/sparc64/loader/asm.S

    r5646813 ra1a83e5e  
    4141
    4242halt:
    43         b halt
     43        ba %xcc, halt
    4444        nop
    4545       
     
    117117        ldub [%g2], %g2
    118118        cmp %g2, 3
    119         be 1f
     119        be %xcc, 1f
    120120        nop
    1211210:
  • boot/arch/sparc64/loader/boot.S

    r5646813 ra1a83e5e  
    4444.global start
    4545start:
    46         b 1f
     46        ba %xcc, 1f
    4747        nop
    4848
     
    8484        stx %o4, [%l0]
    8585       
    86         b bootstrap
     86        ba %xcc, bootstrap
    8787        nop
    8888
Note: See TracChangeset for help on using the changeset viewer.