summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorManman Ren <manman.ren@gmail.com>2015-12-16 20:45:48 +0000
committerManman Ren <manman.ren@gmail.com>2015-12-16 20:45:48 +0000
commit8f2b4f1f9eaca4e4c7afaf7a3225557f53bb0f73 (patch)
treeed38d7c156d9073733fd5ff9de5872ad17b185d0 /include
parent9ad8cc389cd0bcf99c9c2a2497e0d8a512abae9e (diff)
CXX_FAST_TLS calling convention: target independent portion.
Update supportSplitCSR's interface to take machine function instead of the calling convention. Review comments for http://reviews.llvm.org/D15341 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@255818 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Target/TargetLowering.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h
index a105917958d..a30b060622a 100644
--- a/include/llvm/Target/TargetLowering.h
+++ b/include/llvm/Target/TargetLowering.h
@@ -2264,8 +2264,8 @@ public:
}
/// Return true if the target supports that a subset of CSRs for the given
- /// calling convention is handled explicitly via copies.
- virtual bool supportSplitCSR(CallingConv::ID CC) const {
+ /// machine function is handled explicitly via copies.
+ virtual bool supportSplitCSR(MachineFunction *MF) const {
return false;
}