summaryrefslogtreecommitdiff
path: root/test/Bindings
diff options
context:
space:
mode:
authorAmaury Sechet <deadalnix@gmail.com>2016-06-12 06:17:24 +0000
committerAmaury Sechet <deadalnix@gmail.com>2016-06-12 06:17:24 +0000
commitca669104bfa390d36d1657d4f84147c8f27711c7 (patch)
treea5fd2b19fbd02eb3ff77102d968d4d18bacce75b /test/Bindings
parent5f6317b29370f4f63f1e1f13155e211fa084c04f (diff)
Make sure we have a Add/Remove/Has function for various thing that can have attribute.
Summary: This also deprecated the get attribute function familly. Reviewers: Wallbraker, whitequark, joker.eph, echristo, rafael, jyknight Subscribers: axw, joker.eph, llvm-commits Differential Revision: http://reviews.llvm.org/D19181 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@272504 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Bindings')
-rw-r--r--test/Bindings/llvm-c/invoke.ll9
1 files changed, 5 insertions, 4 deletions
diff --git a/test/Bindings/llvm-c/invoke.ll b/test/Bindings/llvm-c/invoke.ll
index 22e3c8523ab..0cd70a74e48 100644
--- a/test/Bindings/llvm-c/invoke.ll
+++ b/test/Bindings/llvm-c/invoke.ll
@@ -70,13 +70,14 @@ unwind7: ; preds = %unwind5
declare void @_D6object6Object6__ctorFMC6object6ObjectZv(%C6object6Object*)
-declare i8* @_d_allocmemory(i64)
+declare noalias i8* @_d_allocmemory(i64)
declare i32 @__sd_eh_personality(i32, i32, i64, i8*, i8*)
-declare void @__sd_eh_throw(%C6object9Throwable*)
+declare void @__sd_eh_throw(%C6object9Throwable* nonnull) #0
; Function Attrs: nounwind readnone
-declare i32 @llvm.eh.typeid.for(i8*) #0
+declare i32 @llvm.eh.typeid.for(i8*) #1
-attributes #0 = { nounwind readnone } \ No newline at end of file
+attributes #0 = { noreturn }
+attributes #1 = { nounwind readnone } \ No newline at end of file