diff options
author | Simon Atanasyan <simon@atanasyan.com> | 2015-02-16 22:59:29 +0000 |
---|---|---|
committer | Simon Atanasyan <simon@atanasyan.com> | 2015-02-16 22:59:29 +0000 |
commit | 79ba8407d21efd68e98d26be863b063bc4c6156d (patch) | |
tree | 6c0dd890d7e9ea79419b67276bd7015ade7e74a3 /llvm/lib | |
parent | 05fa2b0a1486076507bed95c81f33debb0077bd1 (diff) | |
download | bcm5719-llvm-79ba8407d21efd68e98d26be863b063bc4c6156d.tar.gz bcm5719-llvm-79ba8407d21efd68e98d26be863b063bc4c6156d.zip |
[Mips] Add .MIPS.options section descriptor kinds enumeration
No functional changes.
llvm-svn: 229452
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/Mips/MCTargetDesc/MipsOptionRecord.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/Mips/MCTargetDesc/MipsOptionRecord.cpp b/llvm/lib/Target/Mips/MCTargetDesc/MipsOptionRecord.cpp index f0d3be33424..188e3e8e1db 100644 --- a/llvm/lib/Target/Mips/MCTargetDesc/MipsOptionRecord.cpp +++ b/llvm/lib/Target/Mips/MCTargetDesc/MipsOptionRecord.cpp @@ -34,7 +34,7 @@ void MipsRegInfoRecord::EmitMipsOptionRecord() { MCA.getOrCreateSectionData(*Sec).setAlignment(8); Streamer->SwitchSection(Sec); - Streamer->EmitIntValue(1, 1); // kind + Streamer->EmitIntValue(ELF::ODK_REGINFO, 1); // kind Streamer->EmitIntValue(40, 1); // size Streamer->EmitIntValue(0, 2); // section Streamer->EmitIntValue(0, 4); // info |