From: Reid Kleckner Date: Mon, 21 Oct 2013 22:30:53 +0000 (+0000) Subject: Re-enable passing MS inline asm test. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=150f9da3b7cbef35563e1c7bbd681b29329e463d;p=clang Re-enable passing MS inline asm test. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@193124 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Parser/MicrosoftExtensions.c b/test/Parser/MicrosoftExtensions.c index de933f9e5d..2d9aa250bf 100644 --- a/test/Parser/MicrosoftExtensions.c +++ b/test/Parser/MicrosoftExtensions.c @@ -20,15 +20,12 @@ void * __ptr32 PtrToPtr32(const void *p) void __forceinline InterlockedBitTestAndSet (long *Base, long Bit) { - // FIXME: Re-enable this once MS inline asm stabilizes. -#if 0 __asm { mov eax, Bit mov ecx, Base lock bts [ecx], eax setc al }; -#endif } _inline int foo99() { return 99; }