xref: /llvm-project/clang-tools-extra/docs/clang-tidy/checks/hicpp/no-assembler.rst (revision 12bdbe2792b53ee1253c508b44f24d43735e7de9)
1.. title:: clang-tidy - hicpp-no-assembler
2
3hicpp-no-assembler
4==================
5
6Checks for assembler statements. Use of inline assembly should be avoided since
7it restricts the portability of the code.
8
9This enforces `rule 7.5.1 <https://www.perforce.com/resources/qac/high-integrity-cpp-coding-standard/declarations>`_
10of the High Integrity C++ Coding Standard.
11