Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/references.cfa

    r86d55e66 re71c1d4  
    124124                int *p = &a;
    125125                asm (
    126                         #if defined( __i386 ) || defined( __x86_64 )
    127                                 "incl %[p]\n\t"
    128                                 : [p] "+m" (*p)
    129                         #elif defined( __aarch64__ )
    130                                 "ldr     w1, %[p]\n\t"
    131                                 "add     w1, w1, 1\n\t"
    132                                 "str     w1, %[p]\n\t"
    133                                 : [p] "+m" (*p) ::"w1"
    134                         #endif
     126                        "incl %[p]\n\t"
     127                        : [p] "+m" (*p)
    135128                );
    136129                printf("%d\n", a);
Note: See TracChangeset for help on using the changeset viewer.