blob: a973152b2781f8b8f25dad7c5d8d94ddca20c1de (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
 | // REQUIRES: x86-registered-target
// RUN: %clang_cc1 -triple i386-mingw32 -fsyntax-only -verify -fms-extensions  %s
// expected-no-diagnostics
void __forceinline InterlockedBitTestAndSet (long *Base, long Bit)
{
  __asm {
    mov eax, Bit
    mov ecx, Base
    lock bts [ecx], eax
    setc al
  };
}
 |