File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
llvm/test/CodeGen/AMDGPU/GlobalISel Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -14,18 +14,18 @@ define amdgpu_kernel void @bad_output() {
14
14
15
15
; CHECK: error: invalid constraint '{s998}': could not allocate input register for register constraint
16
16
define amdgpu_kernel void @bad_input () {
17
- tail call void asm sideeffect "s_nop" , "{s998}" (i32 undef )
17
+ tail call void asm sideeffect "s_nop" , "{s998}" (i32 poison )
18
18
ret void
19
19
}
20
20
; CHECK: error: invalid constraint '{s997}': indirect register inputs are not supported yet
21
21
define amdgpu_kernel void @indirect_input () {
22
- tail call void asm sideeffect "s_nop" , "*{s997}" (ptr elementtype(i32 ) undef )
22
+ tail call void asm sideeffect "s_nop" , "*{s997}" (ptr elementtype(i32 ) poison )
23
23
ret void
24
24
}
25
25
26
26
; CHECK: error: invalid constraint 'i': unsupported constraint
27
27
define amdgpu_kernel void @badimm () {
28
- tail call void asm sideeffect "s_nop" , "i" (i32 undef )
28
+ tail call void asm sideeffect "s_nop" , "i" (i32 poison )
29
29
ret
30
30
void
31
31
}
You can’t perform that action at this time.
0 commit comments