ICU-12992 disable U_ALIASING_BARRIER for now

X-SVN-Rev: 39722
This commit is contained in:
Markus Scherer 2017-03-01 23:58:37 +00:00
parent 4b154b8328
commit 8c7d1b2deb

View file

@ -25,7 +25,7 @@ U_NAMESPACE_BEGIN
*/
#ifdef U_ALIASING_BARRIER
// Use the predefined value.
#elif defined(__clang__) || defined(__GNUC__)
#elif 0 // TODO: only some versions of clang?? defined(__clang__) || defined(__GNUC__)
# define U_ALIASING_BARRIER(ptr) asm volatile("" : "+rm"(ptr))
#endif