summaryrefslogtreecommitdiff
path: root/test/Feature
diff options
context:
space:
mode:
authorJustin Lebar <jlebar@google.com>2016-03-22 22:08:01 +0000
committerJustin Lebar <jlebar@google.com>2016-03-22 22:08:01 +0000
commitf7ed58465875ac258b1f8a69778a8d1ae9915818 (patch)
tree52426dc813b72f9a7d84b5c7744b60fb27ae04d4 /test/Feature
parenta8fd65832afdf65d4e76ee1f612c173c3ec1206e (diff)
[NVVM] Remove noduplicate attribute from synchronizing intrinsics.
Summary: I've completed my audit of all the code that looks at noduplicate and added handling of convergent where appropriate, so we no longer need noduplicate on these intrinsics. Reviewers: jholewinski Subscribers: llvm-commits, jholewinski Differential Revision: http://reviews.llvm.org/D18168 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@264107 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Feature')
-rw-r--r--test/Feature/intrinsic-noduplicate.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Feature/intrinsic-noduplicate.ll b/test/Feature/intrinsic-noduplicate.ll
index 1ffe6ac563c..370026223e8 100644
--- a/test/Feature/intrinsic-noduplicate.ll
+++ b/test/Feature/intrinsic-noduplicate.ll
@@ -1,9 +1,9 @@
; RUN: llvm-as < %s | llvm-dis | FileCheck %s
-; Make sure LLVM knows about the convergent and noduplicate attributes on the
+; Make sure LLVM knows about the convergent attribute on the
; llvm.cuda.syncthreads intrinsic.
declare void @llvm.cuda.syncthreads()
; CHECK: declare void @llvm.cuda.syncthreads() #[[ATTRNUM:[0-9]+]]
-; CHECK: attributes #[[ATTRNUM]] = { convergent noduplicate nounwind }
+; CHECK: attributes #[[ATTRNUM]] = { convergent nounwind }