for (unsigned i = ValNo; i < ValNo+NC; ++i) {
const Value *V = Plane[i];
- if (const Constant *CPV = dyn_cast<Constant>(V)) {
- outputConstant(CPV);
+ if (const Constant *C = dyn_cast<Constant>(V)) {
+ outputConstant(C);
}
}
}
unsigned NumPlanes = Table.getNumPlanes();
- // Output the type plane before any constants!
- if (isFunction) {
+ if (isFunction)
+ // Output the type plane before any constants!
outputTypes( Table.getModuleTypeLevel() );
- }
-
- // Output module-level string constants before any other constants.x
- if (!isFunction)
+ else
+ // Output module-level string constants before any other constants.x
outputConstantStrings();
for (unsigned pno = 0; pno != NumPlanes; pno++) {
}
Out.flush();
}
+
+// vim: sw=2 ai