aboutsummaryrefslogtreecommitdiff
path: root/lib/compiler_rt/ashlti3_test.zig
AgeCommit message (Collapse)Author
2023-02-11compiler_rt: __ashlsi3, __ashrsi3, __lshrsi3 for symbol compatibilitymatu3ba
These are unused in LLVM, but in gcc used for example by rl78. Move test files into common file, add tests for aforementioned routines and missing ones for __lshrti3.
2022-05-06flatten lib/std/special and improve "pkg inside another" logicAndrew Kelley
stage2: change logic for detecting whether the main package is inside the std package. Previously it relied on realpath() which is not portable. This uses resolve() which is how imports already work. * stage2: fix cleanup bug when creating Module * flatten lib/std/special/* to lib/* - this was motivated by making main_pkg_is_inside_std false for compiler_rt & friends. * rename "mini libc" to "universal libc"