Fix some of the existing Cilk tests for the new errors.
gcc/testsuite/: 2014-11-10 Andi Kleen <ak@linux.intel.com> * c-c++-common/cilk-plus/AN/misc.c (main): Handle new cilk errors. From-SVN: r217335
This commit is contained in:
parent
784b508c30
commit
300553307a
@ -1,3 +1,8 @@
|
||||
2014-11-10 Andi Kleen <ak@linux.intel.com>
|
||||
|
||||
* c-c++-common/cilk-plus/AN/misc.c (main): Handle
|
||||
new cilk errors.
|
||||
|
||||
2014-11-10 Andi Kleen <ak@linux.intel.com>
|
||||
|
||||
* c-c++-common/cilk-plus/CK/errors.c: New test.
|
||||
|
@ -73,13 +73,13 @@ int main (void)
|
||||
while (ii != array2[1:x:3][1:2:1]) /* { dg-error "cannot be used as a condition for while statement" } */
|
||||
x = 2;
|
||||
|
||||
do { /* { dg-error "cannot be used as a condition for a do-while statement" "" { target c } } */
|
||||
do {
|
||||
x = 3;
|
||||
} while (ii != array2[:][:]); /* { dg-error "cannot be used as a condition for a do-while statement" "" { target c++ } } */
|
||||
} while (ii != array2[:][:]); /* { dg-error "cannot be used as a condition for a do-while statement" } */
|
||||
|
||||
do { /* { dg-error "cannot be used as a condition for a do-while statement" "" { target c } } */
|
||||
do {
|
||||
x = 2;
|
||||
} while (ii != (x + array2[:][1:x:2]) + 2); /* { dg-error "cannot be used as a condition for a do-while statement" "" { target c++ } } */
|
||||
} while (ii != (x + array2[:][1:x:2]) + 2); /* { dg-error "cannot be used as a condition for a do-while statement" } */
|
||||
|
||||
do {
|
||||
x += 3;
|
||||
|
Loading…
x
Reference in New Issue
Block a user