projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7a0b640
)
Use a more conventional logical op instead of bitwise and
author
Alp Toker
<alp@nuanti.com>
Mon, 24 Feb 2014 04:35:58 +0000
(
04:35
+0000)
committer
Alp Toker
<alp@nuanti.com>
Mon, 24 Feb 2014 04:35:58 +0000
(
04:35
+0000)
llvm-svn: 202006
clang/lib/Lex/Preprocessor.cpp
patch
|
blob
|
history
diff --git
a/clang/lib/Lex/Preprocessor.cpp
b/clang/lib/Lex/Preprocessor.cpp
index
1e54ab3
..
e7d8440
100644
(file)
--- a/
clang/lib/Lex/Preprocessor.cpp
+++ b/
clang/lib/Lex/Preprocessor.cpp
@@
-627,7
+627,7
@@
bool Preprocessor::HandleIdentifier(Token &Identifier) {
// name of a macro.
// FIXME: This warning is disabled in cases where it shouldn't be, like
// "#define constexpr constexpr", "int constexpr;"
- if (II.isCXX11CompatKeyword() & !DisableMacroExpansion) {
+ if (II.isCXX11CompatKeyword() &
&
!DisableMacroExpansion) {
Diag(Identifier, diag::warn_cxx11_keyword) << II.getName();
// Don't diagnose this keyword again in this translation unit.
II.setIsCXX11CompatKeyword(false);