Changeset ba70330


Ignore:
Timestamp:
Aug 21, 2020, 12:12:54 PM (4 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
97cba9f
Parents:
482fa08
Message:

fix exception problems from ARM changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/exception.c

    r482fa08 rba70330  
    1010// Created On       : Mon Jun 26 15:13:00 2017
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Thu Aug 20 23:45:45 2020
    13 // Update Count     : 27
     12// Last Modified On : Fri Aug 21 11:27:56 2020
     13// Update Count     : 29
    1414//
    1515
     
    2020
    2121// Implementation of the secret header is hardware dependent.
    22 #if !( defined( __x86_64 ) || defined( __i386 ) )
     22#if defined( __x86_64 ) || defined( __i386 )
    2323#elif defined( __ARM_ARCH )
    2424#warning FIX ME: check if anything needed for ARM
     
    297297        abort();
    298298}
    299 #if 0
     299
     300#if defined( __x86_64 ) || defined( __i386 )
    300301// This is our personality routine. For every stack frame annotated with
    301302// ".cfi_personality 0x3,__gcfa_personality_v0" this function will be called twice when unwinding.
     
    607608
    608609#pragma GCC pop_options
    609 #endif // 0
     610#endif // __x86_64 || __i386
Note: See TracChangeset for help on using the changeset viewer.