diff options
author | njn <njn@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2007-11-22 23:33:20 +0000 |
---|---|---|
committer | njn <njn@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2007-11-22 23:33:20 +0000 |
commit | f36ae99840c45960187073d140934e45daa6b066 (patch) | |
tree | 07948a74376ba403e01addc754de1508f34e1f56 /lackey | |
parent | 3ed1971497f0d58f894ed6a61c30ea3a79b69a25 (diff) |
Avoid some compiler warnings.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@7201 a5019735-40e9-0310-863c-91ae7b9d1cf9
Diffstat (limited to 'lackey')
-rw-r--r-- | lackey/lk_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lackey/lk_main.c b/lackey/lk_main.c index 2c2f5969..a6061b6d 100644 --- a/lackey/lk_main.c +++ b/lackey/lk_main.c @@ -315,7 +315,7 @@ static Int type2index ( IRType ty ) case Ity_F32: return 6; case Ity_F64: return 7; case Ity_V128: return 8; - default: tl_assert(0); break; + default: tl_assert(0); } } @@ -331,7 +331,7 @@ static HChar* nameOfTypeIndex ( Int i ) case 6: return "F32"; break; case 7: return "F64"; break; case 8: return "V128"; break; - default: tl_assert(0); break; + default: tl_assert(0); } } |