mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-03-05 10:57:32 +00:00
Use the appropriate return type for the compact unwind encoding.
llvm-svn: 190551
This commit is contained in:
parent
87afacb632
commit
11579cf46b
@ -162,7 +162,7 @@ public:
|
||||
virtual void handleAssemblerFlag(MCAssemblerFlag Flag) {}
|
||||
|
||||
/// \brief Generate the compact unwind encoding for the CFI instructions.
|
||||
virtual unsigned
|
||||
virtual uint32_t
|
||||
generateCompactUnwindEncoding(ArrayRef<MCCFIInstruction>) const {
|
||||
return 0;
|
||||
}
|
||||
|
@ -722,7 +722,7 @@ public:
|
||||
}
|
||||
|
||||
/// \brief Generate the compact unwind encoding for the CFI instructions.
|
||||
virtual unsigned
|
||||
virtual uint32_t
|
||||
generateCompactUnwindEncoding(ArrayRef<MCCFIInstruction> Instrs) const {
|
||||
return SupportsCU ? generateCompactUnwindEncodingImpl(Instrs) : 0;
|
||||
}
|
||||
@ -777,7 +777,7 @@ public:
|
||||
}
|
||||
|
||||
/// \brief Generate the compact unwind encoding for the CFI instructions.
|
||||
virtual unsigned
|
||||
virtual uint32_t
|
||||
generateCompactUnwindEncoding(ArrayRef<MCCFIInstruction> Instrs) const {
|
||||
return SupportsCU ? generateCompactUnwindEncodingImpl(Instrs) : 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user