mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Whitespace and formatting. No functional change intended.
llvm-svn: 137463
This commit is contained in:
parent
10a9e984bc
commit
dcc47fe41a
@ -58,7 +58,6 @@ enum {
|
||||
FUNCTION_INST_UNREACHABLE_ABBREV
|
||||
};
|
||||
|
||||
|
||||
static unsigned GetEncodedCastOpcode(unsigned Opcode) {
|
||||
switch (Opcode) {
|
||||
default: llvm_unreachable("Unknown cast instruction!");
|
||||
@ -237,7 +236,6 @@ static void WriteTypeTable(const ValueEnumerator &VE, BitstreamWriter &Stream) {
|
||||
Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed,
|
||||
Log2_32_Ceil(VE.getTypes().size()+1)));
|
||||
unsigned StructNamedAbbrev = Stream.EmitAbbrev(Abbv);
|
||||
|
||||
|
||||
// Abbrev for TYPE_CODE_ARRAY.
|
||||
Abbv = new BitCodeAbbrev();
|
||||
@ -410,14 +408,15 @@ static void WriteModuleInfo(const Module *M, const ValueEnumerator &VE,
|
||||
GV != E; ++GV) {
|
||||
MaxAlignment = std::max(MaxAlignment, GV->getAlignment());
|
||||
MaxGlobalType = std::max(MaxGlobalType, VE.getTypeID(GV->getType()));
|
||||
|
||||
if (!GV->hasSection()) continue;
|
||||
// Give section names unique ID's.
|
||||
unsigned &Entry = SectionMap[GV->getSection()];
|
||||
if (Entry != 0) continue;
|
||||
WriteStringRecord(bitc::MODULE_CODE_SECTIONNAME, GV->getSection(),
|
||||
0/*TODO*/, Stream);
|
||||
Entry = SectionMap.size();
|
||||
if (GV->hasSection()) {
|
||||
// Give section names unique ID's.
|
||||
unsigned &Entry = SectionMap[GV->getSection()];
|
||||
if (!Entry) {
|
||||
WriteStringRecord(bitc::MODULE_CODE_SECTIONNAME, GV->getSection(),
|
||||
0/*TODO*/, Stream);
|
||||
Entry = SectionMap.size();
|
||||
}
|
||||
}
|
||||
}
|
||||
for (Module::const_iterator F = M->begin(), E = M->end(); F != E; ++F) {
|
||||
MaxAlignment = std::max(MaxAlignment, F->getAlignment());
|
||||
|
Loading…
Reference in New Issue
Block a user