File tree 2 files changed +2
-7
lines changed
2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change 90
90
- run : rustup component add llvm-tools-preview
91
91
- name : Download compiler-rt reference sources
92
92
run : |
93
- curl -L -o code.tar.gz https://github.com/rust-lang/llvm-project/archive/rustc/13 .0-2021-08-08 .tar.gz
94
- tar xzf code.tar.gz --strip-components 1 llvm-project-rustc-13 .0-2021-08-08 /compiler-rt
93
+ curl -L -o code.tar.gz https://github.com/rust-lang/llvm-project/archive/rustc/18 .0-2024-02-13 .tar.gz
94
+ tar xzf code.tar.gz --strip-components 1 llvm-project-rustc-18 .0-2024-02-13 /compiler-rt
95
95
echo RUST_COMPILER_RT_ROOT=./compiler-rt >> $GITHUB_ENV
96
96
shell : bash
97
97
Original file line number Diff line number Diff line change @@ -57,16 +57,11 @@ for rlib in $(echo $path); do
57
57
stdout=$( $NM -g --defined-only $rlib 2>&1 )
58
58
# NOTE On i586, It's normal that the get_pc_thunk symbol appears several
59
59
# times so ignore it
60
- #
61
- # FIXME(#167) - we shouldn't ignore `__builtin_cl` style symbols here.
62
60
set +e
63
61
echo " $stdout " | \
64
62
sort | \
65
63
uniq -d | \
66
64
grep -v __x86.get_pc_thunk | \
67
- grep -v __builtin_cl | \
68
- grep -v __builtin_ctz | \
69
- grep -v __builtin_sadd_overflow | \
70
65
grep ' T __'
71
66
72
67
if test $? = 0; then
You can’t perform that action at this time.
0 commit comments