diff options
-rw-r--r-- | test/Analysis/dead-stores.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Analysis/dead-stores.c b/test/Analysis/dead-stores.c index 7335df5118..2a67afd0b0 100644 --- a/test/Analysis/dead-stores.c +++ b/test/Analysis/dead-stores.c @@ -116,7 +116,8 @@ void f15(unsigned x, unsigned y) { int f16(int x) { x = x * 2; - x = sizeof(int [x = (x || x + 1) * 2]); // expected-warning{{Although the value stored to 'x' is used}} + x = sizeof(int [x = (x || x + 1) * 2]) // expected-warning{{Although the value stored to 'x' is used}} + ? 5 : 8; return x; } |