diff options
author | John McCall <rjmccall@apple.com> | 2010-08-03 22:49:45 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-08-03 22:49:45 +0000 |
commit | 03b0df95cdef76fcdbad84bb10817733bd03220f (patch) | |
tree | 7804e691f15e755cbef35e8de997c6b915f34c7e | |
parent | 39dad53772c42eb36ebec1c81c56ba99d038fb94 (diff) |
Fix a warning on a test.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@110165 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/unwind-attr.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/CodeGen/unwind-attr.c b/test/CodeGen/unwind-attr.c index 7b34ae207e..459176cdf7 100644 --- a/test/CodeGen/unwind-attr.c +++ b/test/CodeGen/unwind-attr.c @@ -13,4 +13,5 @@ int test0(void) { // CHECK: define [[INT:i.*]] @test1() nounwind { // CHECK-NOEXC: define [[INT:i.*]] @test1() nounwind { int test1(void) { + return 0; } |