From a83220c6f2ece2ca5f1ef9854fc95c033364d04b Mon Sep 17 00:00:00 2001 From: Mikhail Maltsev Date: Tue, 20 Aug 2019 10:19:55 +0000 Subject: [PATCH] [libcxx] Fix build breakage on mips Fixes https://bugs.llvm.org/show_bug.cgi?id=43011 caused by https://reviews.llvm.org/D63284. Committing as obvious. llvm-svn: 369364 --- libcxx/include/__locale | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcxx/include/__locale b/libcxx/include/__locale index d382e4d..2b6982f 100644 --- a/libcxx/include/__locale +++ b/libcxx/include/__locale @@ -409,7 +409,7 @@ public: static const mask xdigit = _ISxdigit; static const mask blank = _ISblank; #if defined(__mips__) - static const mask __regex_word = static_cast(_ISbit(15)); + static const mask __regex_word = static_cast(_ISbit(15)); #else static const mask __regex_word = 0x80; #endif -- 2.7.4