Ignore:
Timestamp:
Jan 24, 2018, 10:54:56 AM (6 years ago)
Author:
Rob Schluntz <rschlunt@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
ff39851
Parents:
764b4b2 (diff), ccbf683 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:/u/cforall/software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/concurrency/invoke.h

    r764b4b2 rc916e12  
    1010// Created On       : Tue Jan 17 12:27:26 2016
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Fri Jul 21 22:28:56 2017
    13 // Update Count     : 1
     12// Last Modified On : Tue Jan 23 14:55:46 2018
     13// Update Count     : 3
    1414//
    1515
     
    203203                        "movl %%ebp,%1\n"   \
    204204                : "=rm" (ctx.SP), "=rm" (ctx.FP) )
     205        #elif defined( __ARM_ARCH )
     206        #define CtxGet( ctx ) __asm__ ( \
     207                        "mov %0,%%sp\n"   \
     208                        "mov %1,%%r11\n"   \
     209                : "=rm" (ctx.SP), "=rm" (ctx.FP) )
    205210        #endif
    206211
Note: See TracChangeset for help on using the changeset viewer.