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