File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -77,26 +77,26 @@ jobs:
7777 set -e
7878 cd ${{ github.workspace }}/llvm-project
7979 export H_OR_CPP_FILES_CHANGED_LAST_COMMIT=$(git diff --name-only HEAD~1 HEAD -- 'llvm/include/llvm/**/*.h' ':!llvm/include/llvm/Debuginfod/' ':!llvm/include/llvm/Demangle/' )
80- echo $H_OR_CPP_FILES_CHANGED_LAST_COMMIT
80+ echo $H_OR_CPP_FILES_CHANGED_LAST_COMMIT
8181 if [ ! -z "${H_OR_CPP_FILES_CHANGED_LAST_COMMIT}" ]; then
8282 for file in $H_OR_CPP_FILES_CHANGED_LAST_COMMIT; do
83- echo $file
83+ echo $file
8484 ${{ github.workspace }}/ids/build/bin/idt -p ${{ github.workspace }}/llvm-project/build/compile_commands.json --apply-fixits --export-macro=LLVM_ABI --include-header="llvm/Support/Compiler.h" --extra-arg="-DLLVM_ABI=__attribute__((visibility(\"default\")))" --extra-arg="-Wno-macro-redefined" $file
8585 done
8686 fi
8787 export H_OR_CPP_FILES_CHANGED_LAST_COMMIT=$(git diff --name-only HEAD~1 HEAD -- 'llvm/include/llvm-c/**/*.h' )
88- echo $H_OR_CPP_FILES_CHANGED_LAST_COMMIT
88+ echo $H_OR_CPP_FILES_CHANGED_LAST_COMMIT
8989 if [ ! -z "${H_OR_CPP_FILES_CHANGED_LAST_COMMIT}" ]; then
9090 for file in $H_OR_CPP_FILES_CHANGED_LAST_COMMIT; do
91- echo $file
91+ echo $file
9292 ${{ github.workspace }}/ids/build/bin/idt -p ${{ github.workspace }}/llvm-project/build/compile_commands.json --apply-fixits --export-macro=LLVM_C_ABI --include-header="llvm-c/Visibility.h" --extra-arg="-DLLVM_C_ABI=__attribute__((visibility(\"default\")))" --extra-arg="-Wno-macro-redefined" $file
9393 done
9494 fi
9595 export H_OR_CPP_FILES_CHANGED_LAST_COMMIT=$(git diff --name-only HEAD~1 HEAD -- 'llvm/include/llvm/Demangle/**/*.h' )
96- echo $H_OR_CPP_FILES_CHANGED_LAST_COMMIT
96+ echo $H_OR_CPP_FILES_CHANGED_LAST_COMMIT
9797 if [ ! -z "${H_OR_CPP_FILES_CHANGED_LAST_COMMIT}" ]; then
9898 for file in $H_OR_CPP_FILES_CHANGED_LAST_COMMIT; do
99- echo $file
99+ echo $file
100100 ${{ github.workspace }}/ids/build/bin/idt -p ${{ github.workspace }}/llvm-project/build/compile_commands.json --apply-fixits --export-macro=DEMANGLE_ABI --include-header="llvm/Demangle/Visibility.h" --extra-arg="-DEMANGLE_ABI=__attribute__((visibility(\"default\")))" --extra-arg="-Wno-macro-redefined" $file
101101 done
102102 fi
You can’t perform that action at this time.
0 commit comments