diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2018-08-02 17:33:42 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2018-08-02 17:33:42 +0000 | 
| commit | 84c4061b34e048f47e5eb4fbabc1558495e8157c (patch) | |
| tree | 83f9a0fbaadd2f5e3adac8f066cc8160781b385d /ELF/Config.h | |
| parent | 20d35e67e67f106f617c939725101223211659f0 (diff) | |
Notes
Diffstat (limited to 'ELF/Config.h')
| -rw-r--r-- | ELF/Config.h | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/ELF/Config.h b/ELF/Config.h index ec804c5296bc9..622324c13e2d8 100644 --- a/ELF/Config.h +++ b/ELF/Config.h @@ -58,6 +58,9 @@ enum class SortSectionPolicy { Default, None, Alignment, Name, Priority };  // For --target2  enum class Target2Policy { Abs, Rel, GotRel }; +// For tracking ARM Float Argument PCS +enum class ARMVFPArgKind { Default, Base, VFP, ToolChain }; +  struct SymbolVersion {    llvm::StringRef Name;    bool IsExternCpp; @@ -133,6 +136,7 @@ struct Configuration {    bool EhFrameHdr;    bool EmitRelocs;    bool EnableNewDtags; +  bool ExecuteOnly;    bool ExportDynamic;    bool FixCortexA53Errata843419;    bool GcSections; @@ -195,6 +199,7 @@ struct Configuration {    StripPolicy Strip;    UnresolvedPolicy UnresolvedSymbols;    Target2Policy Target2; +  ARMVFPArgKind ARMVFPArgs = ARMVFPArgKind::Default;    BuildIdKind BuildId = BuildIdKind::None;    ELFKind EKind = ELFNoneKind;    uint16_t DefaultSymbolVersion = llvm::ELF::VER_NDX_GLOBAL;  | 
