diff options
author | Bob Wilson <bob.wilson@apple.com> | 2010-07-28 18:21:10 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2010-07-28 18:21:10 +0000 |
commit | 59fba9d2b92b401b4937c5123490e071000ca596 (patch) | |
tree | d709891d56a3997f0d9472a8d9886f94b6f0c534 | |
parent | 5b468039558d92e0c57b10265f833d628e8d5296 (diff) | |
download | bcm5719-llvm-59fba9d2b92b401b4937c5123490e071000ca596.tar.gz bcm5719-llvm-59fba9d2b92b401b4937c5123490e071000ca596.zip |
Fix a warning from gcc-4.0 (from the ppc buildbot).
llvm-svn: 109605
-rw-r--r-- | llvm/utils/TableGen/NeonEmitter.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/utils/TableGen/NeonEmitter.cpp b/llvm/utils/TableGen/NeonEmitter.cpp index 3516d318855..a754ce289a9 100644 --- a/llvm/utils/TableGen/NeonEmitter.cpp +++ b/llvm/utils/TableGen/NeonEmitter.cpp @@ -1016,6 +1016,8 @@ static unsigned RangeFromType(StringRef typestr) { throw "unhandled type!"; break; } + assert(0 && "unreachable"); + return 0; } /// runHeader - Emit a file with sections defining: |