Changes in / [b2ea0cd:083e637]


Ignore:
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • libcfa/prelude/builtins.def

    rb2ea0cd r083e637  
    867867/* Object size checking builtins.  */
    868868DEF_GCC_BUILTIN        (BUILT_IN_OBJECT_SIZE, "object_size", BT_FN_SIZE_CONST_PTR_INT, ATTR_PURE_NOTHROW_LEAF_LIST)
     869DEF_GCC_BUILTIN        (BUILT_IN_DYNAMIC_OBJECT_SIZE, "dynamic_object_size", BT_FN_SIZE_CONST_PTR_INT, ATTR_PURE_NOTHROW_LEAF_LIST)
    869870DEF_EXT_LIB_BUILTIN_CHKP (BUILT_IN_MEMCPY_CHK, "__memcpy_chk", BT_FN_PTR_PTR_CONST_PTR_SIZE_SIZE, ATTR_RET1_NOTHROW_NONNULL_LEAF)
    870871DEF_EXT_LIB_BUILTIN_CHKP (BUILT_IN_MEMMOVE_CHK, "__memmove_chk", BT_FN_PTR_PTR_CONST_PTR_SIZE_SIZE, ATTR_RET1_NOTHROW_NONNULL_LEAF)
  • libcfa/src/stdhdr/math.h

    rb2ea0cd r083e637  
    1010// Created On       : Mon Jul  4 23:25:26 2016
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Fri Feb  7 19:05:27 2020
    13 // Update Count     : 15
     12// Last Modified On : Tue May  7 16:41:02 2024
     13// Update Count     : 22
    1414//
    1515
     
    1818#define exception ``exception                                                   // make keyword an identifier
    1919#define __CFA_MATH_H__
     20#endif
     21
     22#if __aarch64__ && __GNUC__ == 13                                               // TEMPORARY: gcc-13 problem on ARM in /usr/include/aarch64-linux-gnu/bits/math-vector.h
     23typedef double __Float32x4_t;
     24typedef double __Float64x2_t;
     25typedef float __SVFloat32_t;
     26typedef float __SVFloat64_t;
     27typedef int __SVBool_t;
    2028#endif
    2129
  • src/ResolvExpr/Cost.h

    rb2ea0cd r083e637  
    1010// Created On       : Sun May 17 09:39:50 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Fri Jun 21 11:39:13 2019
    13 // Update Count     : 63
     12// Last Modified On : Fri May  3 17:15:41 2024
     13// Update Count     : 64
    1414//
    1515
     
    1919#include <cassert>
    2020#include <climits>
     21#include <cstdint>
    2122
    2223namespace ResolvExpr {
  • tests/pybin/tools.py

    rb2ea0cd r083e637  
    120120                return (False, "'file EXPECT' failed with code {} '{}'".format(code, err))
    121121
    122         match = re.search(".*: (.*)", out)
     122        match = re.search(r".*: (.*)", out)
    123123
    124124        if not match:
     
    306306                sys.exit(1)
    307307
    308         re_jobs = re.search("--jobserver-(auth|fds)", out)
     308        re_jobs = re.search(r"--jobserver-(auth|fds)", out)
    309309        if not re_jobs:
    310310                print("ERROR: cannot find Makefile jobserver version", file=sys.stderr)
  • tests/test.py

    rb2ea0cd r083e637  
    2323
    2424        def match_test(path):
    25                 match = re.search("^%s\/([\w\/\-_]*).expect\/([\w\-_\+]+)(\.[\w\-_]+)?\.txt$" % settings.SRCDIR, path)
     25                match = re.search(r'^%s\/([\w\/\-_]*).expect\/([\w\-_\+]+)(\.[\w\-_]+)?\.txt$' % settings.SRCDIR, path)
    2626                if match :
    2727                        test = Test()
     
    359359                                sys.exit(1)
    360360
    361                         print(' '.join(re.findall('([^\s]+\.cfa)', out)), end=' ')
     361                        print(' '.join(re.findall(r'([^\s]+\.cfa)', out)), end=' ')
    362362
    363363                print('')
Note: See TracChangeset for help on using the changeset viewer.