12 lines · cpp
1// REQUIRES: system-windows2// FIXME: Re-enable test on windows (PR36855)3// UNSUPPORTED: system-windows4// RUN: %check_clang_tidy %s hicpp-no-assembler %t5 6void f() {7 _asm {8 mov al, 2;9 // CHECK-MESSAGES: :[[@LINE-2]]:3: warning: do not use inline assembler in safety-critical code [hicpp-no-assembler]10 }11}12