diff options
author | Mike Stump <mrs@apple.com> | 2009-07-21 20:52:43 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-07-21 20:52:43 +0000 |
commit | 5e7869f63e7a415f2494058ddb8b9e411d93c4a6 (patch) | |
tree | a5c932c5b88423cbc9e52fc2d19b6d4eb89ae15a /clang/test/CodeGen/exprs.c | |
parent | 087a3f7e0de31006f027668d7cdcb8588f0a2208 (diff) | |
download | bcm5719-llvm-5e7869f63e7a415f2494058ddb8b9e411d93c4a6.tar.gz bcm5719-llvm-5e7869f63e7a415f2494058ddb8b9e411d93c4a6.zip |
Prep for new warning.
llvm-svn: 76638
Diffstat (limited to 'clang/test/CodeGen/exprs.c')
-rw-r--r-- | clang/test/CodeGen/exprs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/exprs.c b/clang/test/CodeGen/exprs.c index 36cfff9e8a6..599e541d947 100644 --- a/clang/test/CodeGen/exprs.c +++ b/clang/test/CodeGen/exprs.c @@ -15,7 +15,7 @@ void *test(int *i) { } _Bool test2b; -int test2() {if (test2b);} +int test2() { if (test2b); return 0; } // PR1921 int test3() { |