diff options
author | Chris Lattner <sabre@nondot.org> | 2006-11-21 17:23:33 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-11-21 17:23:33 +0000 |
commit | 5b9f4891d73b8773d2610db3cedf2a22273d3bb3 (patch) | |
tree | ecbc59c6c418535cde121f24b60e837a11d5b664 /clang/test/Preprocessor/cxx_bitand.cpp | |
parent | 058b4b6b415cfb95ca3495c27e59f338d0c66e8c (diff) | |
download | llvm-5b9f4891d73b8773d2610db3cedf2a22273d3bb3.zip llvm-5b9f4891d73b8773d2610db3cedf2a22273d3bb3.tar.gz llvm-5b9f4891d73b8773d2610db3cedf2a22273d3bb3.tar.bz2 |
Add support for C++ operator keywords. Patch by Bill Wendling.
llvm-svn: 39214
Diffstat (limited to 'clang/test/Preprocessor/cxx_bitand.cpp')
-rw-r--r-- | clang/test/Preprocessor/cxx_bitand.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/clang/test/Preprocessor/cxx_bitand.cpp b/clang/test/Preprocessor/cxx_bitand.cpp new file mode 100644 index 0000000..ecc52e8 --- /dev/null +++ b/clang/test/Preprocessor/cxx_bitand.cpp @@ -0,0 +1,16 @@ +// RUN: clang -DA=1 -DB=2 -E %s | grep 'int a = 927 == 927' && +// RUN: clang -DA=1 -DB=1 -E %s | grep 'int a = 37 == 37' && +// RUN: clang -E %s | grep 'int a = 927 == 927' +#if A bitand B +#define X 37 +#else +#define X 927 +#endif + +#if A & B +#define Y 37 +#else +#define Y 927 +#endif + +int a = X == Y; |