aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/cpp/pragma-3.c
diff options
context:
space:
mode:
authorDodji Seketeli <dodji@redhat.com>2011-06-06 11:33:42 +0000
committerDodji Seketeli <dodji@gcc.gnu.org>2011-06-06 13:33:42 +0200
commit38fbfaf6fb23fdcd130cc524839686b9ad28f752 (patch)
tree3c306927913661e1e914dc99031a45c1684aaff8 /gcc/testsuite/gcc.dg/cpp/pragma-3.c
parent3bfc61cf25241bdcf7aad08c1e2b6607d25f97bb (diff)
downloadgcc-38fbfaf6fb23fdcd130cc524839686b9ad28f752.zip
gcc-38fbfaf6fb23fdcd130cc524839686b9ad28f752.tar.gz
gcc-38fbfaf6fb23fdcd130cc524839686b9ad28f752.tar.bz2
re PR preprocessor/48532 (Wrong location of namespaced pragma involving macros)
PR preprocessor/48532 libcpp/ * directives.c (do_pragma): Don't forget the invocation location when parsing the pragma name of a namespaced pragma directive. gcc/testsuite/ * gcc.dg/cpp/pragma-3.c: New test case. From-SVN: r174694
Diffstat (limited to 'gcc/testsuite/gcc.dg/cpp/pragma-3.c')
-rw-r--r--gcc/testsuite/gcc.dg/cpp/pragma-3.c39
1 files changed, 39 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/cpp/pragma-3.c b/gcc/testsuite/gcc.dg/cpp/pragma-3.c
new file mode 100644
index 0000000..9afc391
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/cpp/pragma-3.c
@@ -0,0 +1,39 @@
+/*
+ { dg-options "-fopenmp" }
+ { dg-do preprocess }
+ */
+
+void foo (void)
+{
+ int i1, j1, k1;
+#define p parallel
+#define P(x) private (x##1)
+#define S(x) shared (x##1)
+#define F(x) firstprivate (x##1)
+#pragma omp \
+ p \
+ P(i) \
+ S(j) \
+ F(k)
+ ;
+}
+
+/*
+ The bug here was that we had a line like:
+ # 33554432 "../../gcc/testsuite/gcc.dg/cpp/pragma-3.c"
+
+ Before line:
+
+ #pragma omp parallel private (i1) shared (j1) firstprivate (k1)
+
+ Note the very big integer there. Normally we should just have
+ this:
+
+ # 13 "../../gcc/testsuite/gcc.dg/cpp/pragma-3.c"
+ #pragma omp parallel private (i1) shared (j1) firstprivate (k1)
+
+ So let's check that we have no line with a number of 3 or more
+ digit after #:
+
+ { dg-final { scan-file-not pragma-3.i "# \[0-9\]{3} \[^\n\r\]*pragma-3.c" } }
+*/