summaryrefslogtreecommitdiff
path: root/include/llvm/Intrinsics.td
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2010-05-27 23:11:57 +0000
committerJim Grosbach <grosbach@apple.com>2010-05-27 23:11:57 +0000
commita65850230af7f13d9111450f645886b968dea2a2 (patch)
tree6b0760ac796627a9dddbbbcc2a38bcf00f4aa2d8 /include/llvm/Intrinsics.td
parent39f76bb6c8d6e7edb77805f770318ebd1727d0aa (diff)
downloadllvm-a65850230af7f13d9111450f645886b968dea2a2.tar.gz
llvm-a65850230af7f13d9111450f645886b968dea2a2.tar.bz2
llvm-a65850230af7f13d9111450f645886b968dea2a2.tar.xz
back out 104862/104869. Can reuse stacksave after all. Very cool.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104897 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Intrinsics.td')
-rw-r--r--include/llvm/Intrinsics.td5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/llvm/Intrinsics.td b/include/llvm/Intrinsics.td
index 42c16c34ac..444f514d59 100644
--- a/include/llvm/Intrinsics.td
+++ b/include/llvm/Intrinsics.td
@@ -197,13 +197,12 @@ def int_gcwrite : Intrinsic<[],
def int_returnaddress : Intrinsic<[llvm_ptr_ty], [llvm_i32_ty], [IntrNoMem]>;
def int_frameaddress : Intrinsic<[llvm_ptr_ty], [llvm_i32_ty], [IntrNoMem]>;
-// Note: we treat stacksave/stackrestore and stackaddr as writemem because we
-// don't otherwise model their dependencies on allocas.
+// Note: we treat stacksave/stackrestore as writemem because we don't otherwise
+// model their dependencies on allocas.
def int_stacksave : Intrinsic<[llvm_ptr_ty]>,
GCCBuiltin<"__builtin_stack_save">;
def int_stackrestore : Intrinsic<[], [llvm_ptr_ty]>,
GCCBuiltin<"__builtin_stack_restore">;
-def int_stackaddress : Intrinsic<[llvm_ptr_ty], []>;
// IntrWriteArgMem is more pessimistic than strictly necessary for prefetch,
// however it does conveniently prevent the prefetch from being reordered