mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-24 06:10:12 +00:00
d0fe8371bf
Calling 'make polly-update-format' will format all Polly files with clang-format. llvm-svn: 181293
12 lines
167 B
Bash
Executable File
12 lines
167 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if ! which clang-format; then
|
|
echo "Error: cannot find clang-format in your path"
|
|
exit 1
|
|
fi
|
|
|
|
for ARG in "$@"
|
|
do
|
|
clang-format -i $ARG
|
|
done
|