summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2011-10-17 18:22:52 +0000
committerBill Wendling <isanbard@gmail.com>2011-10-17 18:22:52 +0000
commit728662f9e869251ff9b5a847b0cb0daa99d1d250 (patch)
tree585f6c4f263ad1cfd11ab701476fc8e77764b8c6 /include
parentf1fddcd9e01ceb38ee7f2951f9e109cccb601654 (diff)
downloadllvm-728662f9e869251ff9b5a847b0cb0daa99d1d250.tar.gz
llvm-728662f9e869251ff9b5a847b0cb0daa99d1d250.tar.bz2
llvm-728662f9e869251ff9b5a847b0cb0daa99d1d250.tar.xz
Now that we have the ReturnsTwice function attribute, this method is
obsolete. Check the attribute instead. <rdar://problem/8031714> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142212 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Function.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/llvm/Function.h b/include/llvm/Function.h
index 678651bbf1..4386249f5f 100644
--- a/include/llvm/Function.h
+++ b/include/llvm/Function.h
@@ -425,10 +425,6 @@ public:
///
bool hasAddressTaken(const User** = 0) const;
- /// callsFunctionThatReturnsTwice - Return true if the function has a call to
- /// setjmp or other function that gcc recognizes as "returning twice".
- bool callsFunctionThatReturnsTwice() const;
-
private:
// Shadow Value::setValueSubclassData with a private forwarding method so that
// subclasses cannot accidentally use it.