diff options
author | Bill Wendling <isanbard@gmail.com> | 2011-06-23 00:23:04 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2011-06-23 00:23:04 +0000 |
commit | 533c9ac02196fbb911d90e129631ed7c97d9c449 (patch) | |
tree | 4069da9fded26dd60804b25b65ed1e98b9cb309a | |
parent | de0cea7e495849659a079ddcec8e299cbbcad90a (diff) |
Allow the AsmInfo to query for the compact unwind section.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133670 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Target/TargetAsmInfo.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/llvm/Target/TargetAsmInfo.h b/include/llvm/Target/TargetAsmInfo.h index ad44ada1f8..1dc725a893 100644 --- a/include/llvm/Target/TargetAsmInfo.h +++ b/include/llvm/Target/TargetAsmInfo.h @@ -59,6 +59,10 @@ public: return TLOF->getEHFrameSection(); } + const MCSection *getCompactUnwindSection() const { + return TLOF->getCompactUnwindSection(); + } + const MCSection *getDwarfFrameSection() const { return TLOF->getDwarfFrameSection(); } |