diff options
author | Patrik Hagglund <patrik.h.hagglund@ericsson.com> | 2013-06-28 06:54:05 +0000 |
---|---|---|
committer | Patrik Hagglund <patrik.h.hagglund@ericsson.com> | 2013-06-28 06:54:05 +0000 |
commit | dcc336bf8e16ae96a9283d69ce29ec90aeee6274 (patch) | |
tree | e58599632bef2f949256441bb10df7e80e2e4f62 /llvm/lib/Support | |
parent | 983a16c08adbeb89c34e894647d4ae08a0417481 (diff) | |
download | bcm5719-llvm-dcc336bf8e16ae96a9283d69ce29ec90aeee6274.tar.gz bcm5719-llvm-dcc336bf8e16ae96a9283d69ce29ec90aeee6274.zip |
Suppress GCC "control reaches end of non-void function" warning.
llvm-svn: 185136
Diffstat (limited to 'llvm/lib/Support')
-rw-r--r-- | llvm/lib/Support/Unix/Path.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Support/Unix/Path.inc b/llvm/lib/Support/Unix/Path.inc index 8a94b935993..1cbdbf5429b 100644 --- a/llvm/lib/Support/Unix/Path.inc +++ b/llvm/lib/Support/Unix/Path.inc @@ -178,6 +178,7 @@ retry_random_path: return error_code::success(); } } + llvm_unreachable("Invalid Type"); } namespace llvm { |