2015-01-06 18:00:21 +00:00
|
|
|
;RUN: llc < %s -march=amdgcn -mcpu=verde -verify-machineinstrs | FileCheck %s
|
2015-01-27 17:27:15 +00:00
|
|
|
;RUN: llc < %s -march=amdgcn -mcpu=tonga -verify-machineinstrs | FileCheck %s
|
2014-01-27 07:20:44 +00:00
|
|
|
|
2014-10-01 17:15:17 +00:00
|
|
|
; CHECK-LABEL: {{^}}main:
|
2014-11-05 14:50:53 +00:00
|
|
|
; CHECK: s_sendmsg Gs(emit stream 0)
|
|
|
|
; CHECK: s_sendmsg Gs(cut stream 1)
|
|
|
|
; CHECK: s_sendmsg Gs(emit-cut stream 2)
|
|
|
|
; CHECK: s_sendmsg Gs_done(nop)
|
2014-01-27 07:20:44 +00:00
|
|
|
|
|
|
|
define void @main() {
|
|
|
|
main_body:
|
|
|
|
call void @llvm.SI.sendmsg(i32 34, i32 0);
|
|
|
|
call void @llvm.SI.sendmsg(i32 274, i32 0);
|
|
|
|
call void @llvm.SI.sendmsg(i32 562, i32 0);
|
|
|
|
call void @llvm.SI.sendmsg(i32 3, i32 0);
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; Function Attrs: nounwind
|
|
|
|
declare void @llvm.SI.sendmsg(i32, i32) #0
|
|
|
|
|
|
|
|
attributes #0 = { nounwind }
|