We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01bca90 commit 6630ef9Copy full SHA for 6630ef9
1 file changed
lib/Common/CommonPal.h
@@ -706,8 +706,11 @@ namespace PlatformAgnostic
706
: "cc" // clobber condition code
707
);
708
return retval;
709
+#elif !defined(__ANDROID__)
710
+ return _interlockedbittestandreset(_BitBase, (long)_BitPos);
711
#else
- return _interlockedbittestandreset(_BitBase, _BitPos);
712
+ // xplat-todo: Implement _interlockedbittestandreset for Android
713
+ abort();
714
#endif
715
}
716
};
0 commit comments