From ef4a661725716c60b49c40eed5225cac52f877e9 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Tue, 11 Sep 2007 17:20:55 +0000 Subject: Add a bool to indicate if we should set the "indirect encoding" bit in the Dwarf information for EH. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41852 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Target/TargetAsmInfo.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'include') diff --git a/include/llvm/Target/TargetAsmInfo.h b/include/llvm/Target/TargetAsmInfo.h index 97eaa35..3326088 100644 --- a/include/llvm/Target/TargetAsmInfo.h +++ b/include/llvm/Target/TargetAsmInfo.h @@ -116,6 +116,11 @@ namespace llvm { const char *PersonalityPrefix; // Defaults to "" const char *PersonalitySuffix; // Defaults to "" + /// NeedsIndirectEncoding - If set, we need to set the indirect encoding bit + /// for EH in Dwarf. + /// + bool NeedsIndirectEncoding; // Defaults to false + /// InlineAsmStart/End - If these are nonempty, they contain a directive to /// emit before and after an inline assembly statement. const char *InlineAsmStart; // Defaults to "#APP\n" -- cgit v1.1