VirtualBox

Changeset 5885 in vbox


Ignore:
Timestamp:
Nov 30, 2007 12:55:36 AM (17 years ago)
Author:
vboxsync
Message:

It's '.' and not '@' that's supposed to be used to indicate local labels in NASM/YASM.

Location:
trunk/src/VBox/Runtime/win/amd64
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/win/amd64/ASMBitFirstClear.asm

    r4071 r5885  
    55;
    66;  Copyright (C) 2006-2007 innotek GmbH
    7 ; 
     7;
    88;  This file is part of VirtualBox Open Source Edition (OSE), as
    99;  available from http://www.virtualbox.org. This file is free software;
     
    3434        ;if (cBits)
    3535        or      edx, edx
    36         jz      short @failed
     36        jz      short .failed
    3737        ;{
    3838        push    rdi
     
    4646        mov     eax, 0ffffffffh
    4747        repe    scasd                   ; Scan for the first dword with any clear bit.
    48         je      @failed_restore
     48        je      .failed_restore
    4949
    5050        ; find the bit in question
     
    6666        ;}
    6767        ;return -1;
    68 @failed_restore:
     68.failed_restore:
    6969        pop     rdi
    7070        ret
    71 @failed:
     71.failed:
    7272        mov     eax, 0ffffffffh
    7373        ret
  • trunk/src/VBox/Runtime/win/amd64/ASMBitFirstSet.asm

    r4071 r5885  
    55;
    66;  Copyright (C) 2006-2007 innotek GmbH
    7 ; 
     7;
    88;  This file is part of VirtualBox Open Source Edition (OSE), as
    99;  available from http://www.virtualbox.org. This file is free software;
     
    3434        ;if (cBits)
    3535        or      edx, edx
    36         jz      short @failed
     36        jz      short .failed
    3737        ;{
    3838        push    rdi
     
    4646        xor     eax, eax
    4747        repe    scasd                   ; Scan for the first dword with any set bit.
    48         je      @failed_restore
     48        je      .failed_restore
    4949
    5050        ; find the bit in question
     
    6666        ;}
    6767        ;return -1;
    68 @failed_restore:
     68.failed_restore:
    6969        pop     rdi
    70 @failed:
     70.failed:
    7171        mov     eax, 0ffffffffh
    7272        ret
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette