aboutsummaryrefslogtreecommitdiff
path: root/lib/MC/MCELFObjectTargetWriter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/MC/MCELFObjectTargetWriter.cpp')
-rw-r--r--lib/MC/MCELFObjectTargetWriter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/MC/MCELFObjectTargetWriter.cpp b/lib/MC/MCELFObjectTargetWriter.cpp
index 12a02a9e97..1d5698dd45 100644
--- a/lib/MC/MCELFObjectTargetWriter.cpp
+++ b/lib/MC/MCELFObjectTargetWriter.cpp
@@ -12,10 +12,10 @@
using namespace llvm;
MCELFObjectTargetWriter::MCELFObjectTargetWriter(bool Is64Bit_,
- Triple::OSType OSType_,
+ uint8_t OSABI_,
uint16_t EMachine_,
bool HasRelocationAddend_)
- : OSType(OSType_), EMachine(EMachine_),
+ : OSABI(OSABI_), EMachine(EMachine_),
HasRelocationAddend(HasRelocationAddend_), Is64Bit(Is64Bit_) {
}