commit | 9668b1f6c87bd8d9af87e29900508a52584404ef | [log] [tgz] |
---|---|---|
author | Anders Carlsson <andersca@mac.com> | Thu Jul 30 22:37:41 2009 +0000 |
committer | Anders Carlsson <andersca@mac.com> | Thu Jul 30 22:37:41 2009 +0000 |
tree | d0a10a8a8fbc1805ba9d3bc779abcbbcd072d3d0 | |
parent | b3589f44c5d295cd41de2c83f3475116835eeebd [diff] [blame] |
Add casts to avoid a bunch of unused expr warnings. (They aren't reported right now due to a bug that I intend to fix). Ted, please review. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@77630 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Analysis/region-only-test.c b/test/Analysis/region-only-test.c index 64d3fcd..8908adb 100644 --- a/test/Analysis/region-only-test.c +++ b/test/Analysis/region-only-test.c
@@ -9,5 +9,5 @@ if (p[0] == 1) x = &a; if (p[0] == 1) - *x; // no-warning + (void)*x; // no-warning }