From 69c96d71dd31401b2fbef5837e37cb81b2a7c83a Mon Sep 17 00:00:00 2001 From: David Blaikie Date: Sun, 22 Jan 2012 01:17:04 +0000 Subject: Help GCC along with code that's actually unreachable. Unfortunately I don't think there's a fix for this that will work upstream and also satisfy Clang's -Wunreachable-code, which is a pity. But I'll give it some more thought -perhaps there's some way out. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148645 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/unittest/googletest/gtest.cc | 3 +++ 1 file changed, 3 insertions(+) (limited to 'utils') diff --git a/utils/unittest/googletest/gtest.cc b/utils/unittest/googletest/gtest.cc index 653892404f..3fdff0a9a3 100644 --- a/utils/unittest/googletest/gtest.cc +++ b/utils/unittest/googletest/gtest.cc @@ -2481,6 +2481,9 @@ static const char * TestPartResultTypeToString(TestPartResult::Type type) { return "Failure\n"; #endif } + + // All cases return, so this is unreachable but GCC doesn't know it + abort(); } // Prints a TestPartResult to a String. -- cgit v1.2.3