From 150f9da3b7cbef35563e1c7bbd681b29329e463d Mon Sep 17 00:00:00 2001 From: Reid Kleckner Date: Mon, 21 Oct 2013 22:30:53 +0000 Subject: [PATCH] Re-enable passing MS inline asm test. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@193124 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Parser/MicrosoftExtensions.c | 3 --- 1 file changed, 3 deletions(-) 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; } -- 2.50.1