Revert "Re-enable passing MS inline asm test."

Microsoft inline asm crashes on the hexagon bot for unknown reasons.

This reverts commit r193124.

llvm-svn: 193128
This commit is contained in:
Reid Kleckner 2013-10-21 22:56:09 +00:00
parent f1d0d777c9
commit 3dd88b9140
1 changed files with 3 additions and 0 deletions

View File

@ -20,12 +20,15 @@ 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; }