summaryrefslogtreecommitdiffstats
path: root/clang/test/Preprocessor/cxx_and.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-11-21 17:23:33 +0000
committerChris Lattner <sabre@nondot.org>2006-11-21 17:23:33 +0000
commit5b9f4891d73b8773d2610db3cedf2a22273d3bb3 (patch)
treeecbc59c6c418535cde121f24b60e837a11d5b664 /clang/test/Preprocessor/cxx_and.cpp
parent058b4b6b415cfb95ca3495c27e59f338d0c66e8c (diff)
downloadbcm5719-llvm-5b9f4891d73b8773d2610db3cedf2a22273d3bb3.tar.gz
bcm5719-llvm-5b9f4891d73b8773d2610db3cedf2a22273d3bb3.zip
Add support for C++ operator keywords. Patch by Bill Wendling.
llvm-svn: 39214
Diffstat (limited to 'clang/test/Preprocessor/cxx_and.cpp')
-rw-r--r--clang/test/Preprocessor/cxx_and.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/clang/test/Preprocessor/cxx_and.cpp b/clang/test/Preprocessor/cxx_and.cpp
new file mode 100644
index 00000000000..b6bd00e5293
--- /dev/null
+++ b/clang/test/Preprocessor/cxx_and.cpp
@@ -0,0 +1,17 @@
+// RUN: clang -DA -DB -E %s | grep 'int a = 37 == 37' &&
+// RUN: clang -DA -E %s | grep 'int a = 927 == 927' &&
+// RUN: clang -DB -E %s | grep 'int a = 927 == 927' &&
+// RUN: clang -E %s | grep 'int a = 927 == 927'
+#if defined(A) and defined(B)
+#define X 37
+#else
+#define X 927
+#endif
+
+#if defined(A) && defined(B)
+#define Y 37
+#else
+#define Y 927
+#endif
+
+int a = X == Y;
OpenPOWER on IntegriCloud