diff options
Diffstat (limited to 'llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.cpp')
-rw-r--r-- | llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.cpp b/llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.cpp index fca1149453c9e..c5a1a3e6286ed 100644 --- a/llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.cpp +++ b/llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.cpp @@ -57,17 +57,17 @@ namespace llvm { MCStreamer &operator<<(MCStreamer &OS, MipsABIFlagsSection &ABIFlagsSection) { // Write out a Elf_Internal_ABIFlags_v0 struct - OS.EmitIntValue(ABIFlagsSection.getVersionValue(), 2); // version - OS.EmitIntValue(ABIFlagsSection.getISALevelValue(), 1); // isa_level - OS.EmitIntValue(ABIFlagsSection.getISARevisionValue(), 1); // isa_rev - OS.EmitIntValue(ABIFlagsSection.getGPRSizeValue(), 1); // gpr_size - OS.EmitIntValue(ABIFlagsSection.getCPR1SizeValue(), 1); // cpr1_size - OS.EmitIntValue(ABIFlagsSection.getCPR2SizeValue(), 1); // cpr2_size - OS.EmitIntValue(ABIFlagsSection.getFpABIValue(), 1); // fp_abi - OS.EmitIntValue(ABIFlagsSection.getISAExtensionValue(), 4); // isa_ext - OS.EmitIntValue(ABIFlagsSection.getASESetValue(), 4); // ases - OS.EmitIntValue(ABIFlagsSection.getFlags1Value(), 4); // flags1 - OS.EmitIntValue(ABIFlagsSection.getFlags2Value(), 4); // flags2 + OS.emitIntValue(ABIFlagsSection.getVersionValue(), 2); // version + OS.emitIntValue(ABIFlagsSection.getISALevelValue(), 1); // isa_level + OS.emitIntValue(ABIFlagsSection.getISARevisionValue(), 1); // isa_rev + OS.emitIntValue(ABIFlagsSection.getGPRSizeValue(), 1); // gpr_size + OS.emitIntValue(ABIFlagsSection.getCPR1SizeValue(), 1); // cpr1_size + OS.emitIntValue(ABIFlagsSection.getCPR2SizeValue(), 1); // cpr2_size + OS.emitIntValue(ABIFlagsSection.getFpABIValue(), 1); // fp_abi + OS.emitIntValue(ABIFlagsSection.getISAExtensionValue(), 4); // isa_ext + OS.emitIntValue(ABIFlagsSection.getASESetValue(), 4); // ases + OS.emitIntValue(ABIFlagsSection.getFlags1Value(), 4); // flags1 + OS.emitIntValue(ABIFlagsSection.getFlags2Value(), 4); // flags2 return OS; } |