Changes in / [083e637:b2ea0cd]
- Files:
-
- 5 edited
-
libcfa/prelude/builtins.def (modified) (1 diff)
-
libcfa/src/stdhdr/math.h (modified) (2 diffs)
-
src/ResolvExpr/Cost.h (modified) (2 diffs)
-
tests/pybin/tools.py (modified) (2 diffs)
-
tests/test.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/prelude/builtins.def
r083e637 rb2ea0cd 867 867 /* Object size checking builtins. */ 868 868 DEF_GCC_BUILTIN (BUILT_IN_OBJECT_SIZE, "object_size", BT_FN_SIZE_CONST_PTR_INT, ATTR_PURE_NOTHROW_LEAF_LIST) 869 DEF_GCC_BUILTIN (BUILT_IN_DYNAMIC_OBJECT_SIZE, "dynamic_object_size", BT_FN_SIZE_CONST_PTR_INT, ATTR_PURE_NOTHROW_LEAF_LIST)870 869 DEF_EXT_LIB_BUILTIN_CHKP (BUILT_IN_MEMCPY_CHK, "__memcpy_chk", BT_FN_PTR_PTR_CONST_PTR_SIZE_SIZE, ATTR_RET1_NOTHROW_NONNULL_LEAF) 871 870 DEF_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
r083e637 rb2ea0cd 10 10 // Created On : Mon Jul 4 23:25:26 2016 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue May 7 16:41:02 202413 // Update Count : 2212 // Last Modified On : Fri Feb 7 19:05:27 2020 13 // Update Count : 15 14 14 // 15 15 … … 18 18 #define exception ``exception // make keyword an identifier 19 19 #define __CFA_MATH_H__ 20 #endif21 22 #if __aarch64__ && __GNUC__ == 13 // TEMPORARY: gcc-13 problem on ARM in /usr/include/aarch64-linux-gnu/bits/math-vector.h23 typedef double __Float32x4_t;24 typedef double __Float64x2_t;25 typedef float __SVFloat32_t;26 typedef float __SVFloat64_t;27 typedef int __SVBool_t;28 20 #endif 29 21 -
src/ResolvExpr/Cost.h
r083e637 rb2ea0cd 10 10 // Created On : Sun May 17 09:39:50 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri May 3 17:15:41 202413 // Update Count : 6 412 // Last Modified On : Fri Jun 21 11:39:13 2019 13 // Update Count : 63 14 14 // 15 15 … … 19 19 #include <cassert> 20 20 #include <climits> 21 #include <cstdint>22 21 23 22 namespace ResolvExpr { -
tests/pybin/tools.py
r083e637 rb2ea0cd 120 120 return (False, "'file EXPECT' failed with code {} '{}'".format(code, err)) 121 121 122 match = re.search( r".*: (.*)", out)122 match = re.search(".*: (.*)", out) 123 123 124 124 if not match: … … 306 306 sys.exit(1) 307 307 308 re_jobs = re.search( r"--jobserver-(auth|fds)", out)308 re_jobs = re.search("--jobserver-(auth|fds)", out) 309 309 if not re_jobs: 310 310 print("ERROR: cannot find Makefile jobserver version", file=sys.stderr) -
tests/test.py
r083e637 rb2ea0cd 23 23 24 24 def match_test(path): 25 match = re.search( r'^%s\/([\w\/\-_]*).expect\/([\w\-_\+]+)(\.[\w\-_]+)?\.txt$'% settings.SRCDIR, path)25 match = re.search("^%s\/([\w\/\-_]*).expect\/([\w\-_\+]+)(\.[\w\-_]+)?\.txt$" % settings.SRCDIR, path) 26 26 if match : 27 27 test = Test() … … 359 359 sys.exit(1) 360 360 361 print(' '.join(re.findall( r'([^\s]+\.cfa)', out)), end=' ')361 print(' '.join(re.findall('([^\s]+\.cfa)', out)), end=' ') 362 362 363 363 print('')
Note:
See TracChangeset
for help on using the changeset viewer.