aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Target/TargetLowering.h
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2013-10-31 17:18:24 +0000
committerAndrew Trick <atrick@apple.com>2013-10-31 17:18:24 +0000
commit2343e3b228c02896f4779962a91aaa659356fe2a (patch)
treef1fbb0d0ea67124cb25844a8ff8da7f42952701c /include/llvm/Target/TargetLowering.h
parent233012c25bb3b738e0a994bf0678d016fb2a8766 (diff)
downloadexternal_llvm-2343e3b228c02896f4779962a91aaa659356fe2a.zip
external_llvm-2343e3b228c02896f4779962a91aaa659356fe2a.tar.gz
external_llvm-2343e3b228c02896f4779962a91aaa659356fe2a.tar.bz2
Lower stackmap intrinsics directly to their target opcode in the DAG builder.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193769 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target/TargetLowering.h')
-rw-r--r--include/llvm/Target/TargetLowering.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h
index 01b579b..43052e1 100644
--- a/include/llvm/Target/TargetLowering.h
+++ b/include/llvm/Target/TargetLowering.h
@@ -1920,6 +1920,8 @@ public:
ArgListEntry() : isSExt(false), isZExt(false), isInReg(false),
isSRet(false), isNest(false), isByVal(false), isReturned(false),
Alignment(0) { }
+
+ void setAttributes(ImmutableCallSite *CS, unsigned AttrIdx);
};
typedef std::vector<ArgListEntry> ArgListTy;