[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / CodeGen / NVPTX / no-extra-parens.ll
blob9ce910a29b7f082fcfb122e86a43402734269652
1 ; RUN: llc < %s -march=nvptx64 -mcpu=sm_20 | FileCheck %s
2 ; RUN: %if ptxas %{ llc < %s -march=nvptx64 -mcpu=sm_20 | %ptxas-verify %}
4 ; ptxas has no special meaning for '$' character, so it should be used
5 ; without parens.
7 @"$str" = private addrspace(1) constant [4 x i8] c"str\00"
9 declare void @str2(ptr %str)
10 define void @str1() {
11 entry:
12 ;; CHECK: mov.u64 %rd{{[0-9]+}}, $str;
13   tail call void @str2(ptr addrspacecast (ptr addrspace(1) @"$str" to ptr))
14   ret void