Changes in / [fd35f76:a3fab47]


Ignore:
Files:
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/exception.c

    rfd35f76 ra3fab47  
    445445
    446446#pragma GCC push_options
     447#if __GNUC__ < 7
     448#pragma GCC optimize("no-toplevel-reorder")
     449#elif __GNUC__ == 7
    447450#pragma GCC optimize(0)
     451#endif
    448452
    449453// Try statements are hoisted out see comments for details. While this could probably be unique
     
    542546        "       .quad __gcfa_personality_v0\n"
    543547#else // then __i386
    544         "       .long __gcfa_personality_v0\n"
     548        "   .long __gcfa_personality_v0\n"
    545549#endif
    546550);
  • tests/test.py

    rfd35f76 ra3fab47  
    206206
    207207                else:
    208                         if os.stat(out_file).st_size < 1048576:
    209                                 with open (out_file, "r") as myfile:
    210                                         error = myfile.read()
    211                         else:
    212                                 error = "Output log can't be read, file is bigger than 1MB, see {} for actual error\n".format(out_file)
     208                        with open (out_file, "r") as myfile:
     209                                error = myfile.read()
    213210
    214211                        ret, info = core_info(exe_file)
Note: See TracChangeset for help on using the changeset viewer.