From: Bill Wendling Date: Tue, 11 Sep 2007 17:24:38 +0000 (+0000) Subject: Add accessor method. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=4e319a30babef1175b514147aa18ee488311f1b2;p=oota-llvm.git Add accessor method. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41854 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Target/TargetAsmInfo.h b/include/llvm/Target/TargetAsmInfo.h index 3326088a965..5a661a95fda 100644 --- a/include/llvm/Target/TargetAsmInfo.h +++ b/include/llvm/Target/TargetAsmInfo.h @@ -445,6 +445,9 @@ namespace llvm { const char *getPersonalitySuffix() const { return PersonalitySuffix; } + bool getNeedsIndirectEncoding() const { + return NeedsIndirectEncoding; + } const char *getInlineAsmStart() const { return InlineAsmStart; }