Clean up some uninitialized variables and missing return statements that

GCC 4.0.0 compiler (sometimes incorrectly) warns about under release build.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22249 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer
2005-06-18 17:37:34 +00:00
parent 8a207c16d2
commit 4b828e6384
4 changed files with 8 additions and 6 deletions
+2 -1
View File
@@ -43,8 +43,9 @@ namespace {
case PPC::IMPLICIT_DEF: // no asm emitted
return 0;
default:
return 4; // PowerPC instructions are all 4 bytes
break;
}
return 4; // PowerPC instructions are all 4 bytes
}
virtual bool runOnMachineFunction(MachineFunction &Fn) {