commit | a3f4893c54ebd8662b1a8f079fa31beabeb54b90 | [log] [tgz] |
---|---|---|
author | Eric Fiselier <eric@efcs.ca> | Sat Dec 24 05:01:55 2016 +0000 |
committer | Eric Fiselier <eric@efcs.ca> | Sat Dec 24 05:01:55 2016 +0000 |
tree | 2ba155f709031eeca3f561699464926d83eb94a4 | |
parent | 08bf03cf8ca8a4f55644956aec77677b3f0cf232 [diff] [blame] |
Suppress unreachable code warning in unwind tests git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@290487 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/unwind_05.pass.cpp b/test/unwind_05.pass.cpp index 3dea2aa..df1e429 100644 --- a/test/unwind_05.pass.cpp +++ b/test/unwind_05.pass.cpp
@@ -13,6 +13,10 @@ #include <stdlib.h> #include <assert.h> +#if defined(__GNUC__) +#pragma GCC diagnostic ignored "-Wunreachable-code" +#endif + struct A { static int count;