Clean up code a bit, no functionality changes.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4162 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-10-14 03:34:17 +00:00
parent bbd4b303e3
commit 6463e0df85

View File

@ -120,17 +120,17 @@ void BytecodeWriter::outputConstants(bool isFunction) {
outputConstantsInPlane(Plane, ValNo); // Write out the types outputConstantsInPlane(Plane, ValNo); // Write out the types
} }
for (unsigned pno = 0; pno < NumPlanes; pno++) { for (unsigned pno = 0; pno != NumPlanes; pno++) {
const std::vector<const Value*> &Plane = Table.getPlane(pno); const std::vector<const Value*> &Plane = Table.getPlane(pno);
if (Plane.empty()) continue; // Skip empty type planes... if (!Plane.empty()) { // Skip empty type planes...
unsigned ValNo = 0;
unsigned ValNo = 0; if (isFunction) // Don't reemit module constants
if (isFunction) // Don't reemit module constants ValNo = Table.getModuleLevel(pno);
ValNo = Table.getModuleLevel(pno); else if (pno == Type::TypeTyID) // If type plane wasn't written out above
else if (pno == Type::TypeTyID) continue;
continue; // Type plane was written out above
outputConstantsInPlane(Plane, ValNo); // Write out constants in the plane
outputConstantsInPlane(Plane, ValNo); // Write out constants in the plane }
} }
} }