diff options
author | Bill Wendling <isanbard@gmail.com> | 2007-09-11 17:24:38 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2007-09-11 17:24:38 +0000 |
commit | 935d0c45ebd44a84bbf7a37275f9f83a33eab7af (patch) | |
tree | dc3d7b68956873f7efa69268277bbf9b7c52ce6f /include | |
parent | 2d36992694fc05b6d4cfd85cb2884fa462fce6dc (diff) | |
download | external_llvm-935d0c45ebd44a84bbf7a37275f9f83a33eab7af.zip external_llvm-935d0c45ebd44a84bbf7a37275f9f83a33eab7af.tar.gz external_llvm-935d0c45ebd44a84bbf7a37275f9f83a33eab7af.tar.bz2 |
Add accessor method.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41854 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Target/TargetAsmInfo.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/llvm/Target/TargetAsmInfo.h b/include/llvm/Target/TargetAsmInfo.h index 3326088..5a661a9 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; } |