================ @@ -0,0 +1,11 @@ +.. title:: clang-tidy - portability-no-assembler + +portability-no-assembler +======================== + +Checks for assembler statements. Use of inline assembly should be avoided +since it restricts the portability of the code. ---------------- vbvictor wrote:
```suggestion Checks for assembler statements. Use of inline assembly should be avoided since it ties to a specific CPU architecture and syntax making code that uses it non-portable across platforms. ``` https://github.com/llvm/llvm-project/pull/184030 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
