diff options
Diffstat (limited to 'llvm/test/Feature/intrinsic-noduplicate.ll')
-rw-r--r-- | llvm/test/Feature/intrinsic-noduplicate.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Feature/intrinsic-noduplicate.ll b/llvm/test/Feature/intrinsic-noduplicate.ll index 9a2b0aba5bd..1ffe6ac563c 100644 --- a/llvm/test/Feature/intrinsic-noduplicate.ll +++ b/llvm/test/Feature/intrinsic-noduplicate.ll @@ -1,9 +1,9 @@ ; RUN: llvm-as < %s | llvm-dis | FileCheck %s -; Make sure LLVM knows about the noduplicate attribute on the +; Make sure LLVM knows about the convergent and noduplicate attributes on the ; llvm.cuda.syncthreads intrinsic. declare void @llvm.cuda.syncthreads() ; CHECK: declare void @llvm.cuda.syncthreads() #[[ATTRNUM:[0-9]+]] -; CHECK: attributes #[[ATTRNUM]] = { noduplicate nounwind } +; CHECK: attributes #[[ATTRNUM]] = { convergent noduplicate nounwind } |