blob: 474a05d4236bff00199004493cc3ef981745d032 (
plain)
1
2
3
4
5
6
7
8
|
#!/usr/bin/env sh
#
# SPDX-License-Identifier: GPL-2.0-only
# DESCR: Check that we use a single assembler syntax
LC_ALL=C export LC_ALL
git grep -n "\.\(att\|intel\)_syntax\>" | grep -v '\.patch:'
|