Summary: 's' is used to specify sgprs and 'v' is used to specify vgprs. Reviewers: arsenm, echristo Subscribers: cfe-commits Differential Revision: http://reviews.llvm.org/D14307 llvm-svn: 253610
15 lines
352 B
Common Lisp
15 lines
352 B
Common Lisp
// REQUIRES: amdgpu-registered-target
|
|
// RUN: %clang_cc1 -x cl -triple amdgcn -fsyntax-only %s
|
|
// expected-no-diagnostics
|
|
|
|
kernel void test () {
|
|
|
|
int sgpr = 0, vgpr = 0, imm = 0;
|
|
|
|
// sgpr constraints
|
|
__asm__ ("s_mov_b32 %0, %1" : "=s" (sgpr) : "s" (imm) : );
|
|
|
|
// vgpr constraints
|
|
__asm__ ("v_mov_b32 %0, %1" : "=v" (vgpr) : "v" (imm) : );
|
|
}
|