mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
10 lines
311 B
LLVM
10 lines
311 B
LLVM
|
; RUN: llvm-as < %s | llvm-dis | FileCheck %s
|
||
|
|
||
|
; Make sure LLVM knows about the noduplicate attribute 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 }
|