[MIParser] Set RegClassOrRegBank during instruction parsing
[llvm-complete.git] / test / CodeGen / NVPTX / symbol-naming.ll
blob3f1caf927dc810e731adadc59ca60c117ccc4c7c
1 ; RUN: llc < %s -march=nvptx -mcpu=sm_20 | FileCheck %s
2 ; RUN: llc < %s -march=nvptx64 -mcpu=sm_20 | FileCheck %s
4 ; Verify that the NVPTX target removes invalid symbol names prior to emitting
5 ; PTX.
7 ; CHECK-NOT: .str
8 ; CHECK-NOT: .function.
10 ; CHECK-DAG: _$_str
11 ; CHECK-DAG: _$_str1
13 ; CHECK-DAG: _$_function_$_
14 ; CHECK-DAG: _$_function_$_2
16 target datalayout = "e-i64:64-v16:16-v32:32-n16:32:64"
17 target triple = "nvptx64-unknown-unknown"
20 @.str = private unnamed_addr constant [13 x i8] c"%d %f %c %d\0A\00", align 1
21 @_$_str = private unnamed_addr constant [13 x i8] c"%d %f %c %d\0A\00", align 1
24 ; Function Attrs: nounwind
25 define internal void @.function.() {
26 entry:
27   %call = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([13 x i8], [13 x i8]* @.str, i32 0, i32 0))
28   ret void
31 ; Function Attrs: nounwind
32 define internal void @_$_function_$_() {
33 entry:
34   %call = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([13 x i8], [13 x i8]* @_$_str, i32 0, i32 0))
35   ret void
38 ; Function Attrs: nounwind
39 define void @global_function() {
40 entry:
41   call void @.function.()
42   call void @_$_function_$_()
43   ret void
46 declare i32 @printf(i8*, ...)