• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; RUN: llc < %s -march=nvptx -mcpu=sm_20 | FileCheck %s
2
3target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v16:16:16-v32:32:32-v64:64:64-v128:128:128-n16:32:64"
4
5; module asm must come after PTX version/target directives.
6; CHECK-NOT: .global .b32 val;
7
8; CHECK-DAG: .version
9; CHECK-DAG: .target
10
11; CHECK: .global .b32 val;
12module asm ".global .b32 val;"
13
14; module asm must happen before we emit other things.
15; CHECK-LABEL: .visible .func foo
16define void @foo() {
17  ret void
18}
19; Make sure it does not show up anywhere else in the output.
20; CHECK-NOT: .global .b32 val;
21