blob: 5f02ff567ec164e6bcbf9a1113bbfae56688c85e (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
# This file is part of the coreboot project.
#
# 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:'
|