Sign in
llvm
/
polly
/
refs/heads/release_33
/
.
/
utils
/
update_format.sh
blob: 8fee5cc330beaaf585068067b43502d1ce4fab99 [
file
] [
edit
]
#!/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