brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.8 KiB · c13ab51 Raw
41 lines · cpp
1// RUN: %clang_cc1 -std=c++14 -triple nvptx64-unknown-unknown -fclangir -emit-cir %s -o %t.cir2// RUN: FileCheck --check-prefix=CIR --input-file=%t.cir %s3// RUN: %clang_cc1 -std=c++14 -triple nvptx64-unknown-unknown -fclangir -emit-llvm %s -o %t-cir.ll4// RUN: FileCheck --check-prefix=LLVM --input-file=%t-cir.ll %s5// RUN: %clang_cc1 -std=c++14 -triple nvptx64-unknown-unknown -emit-llvm %s -o %t.ll6// RUN: FileCheck --check-prefix=OGCG --input-file=%t.ll %s7 8struct some_struct {9    int x;10};11 12template<int I>13int var_template;14 15template<> int var_template<0>;16template<> int var_template<1> = 1;17template<> some_struct var_template<2>;18 19// CIR: !rec_some_struct = !cir.record<struct "some_struct" {!s32i}>20// CIR: cir.global external @_Z12var_templateILi0EE = #cir.int<0> : !s32i21// CIR: cir.global external @_Z12var_templateILi1EE = #cir.int<1> : !s32i22// CIR: cir.global external @_Z12var_templateILi2EE = #cir.zero : !rec_some_struct23 24// LLVM: %[[STRUCT_TYPE:.+]] = type { i32 }25// LLVM: @_Z12var_templateILi0EE = global i32 026// LLVM: @_Z12var_templateILi1EE = global i32 127// LLVM: @_Z12var_templateILi2EE = global %[[STRUCT_TYPE]] zeroinitializer28 29// OGCG: %[[STRUCT_TYPE:.+]] = type { i32 }30// OGCG: @_Z12var_templateILi0EE = global i32 031// OGCG: @_Z12var_templateILi1EE = global i32 132// OGCG: @_Z12var_templateILi2EE = global %[[STRUCT_TYPE]] zeroinitializer33 34template<typename T, int I> int partial_var_template_specialization_shouldnt_hit_codegen;35template<typename T> int partial_var_template_specialization_shouldnt_hit_codegen<T, 123>;36template<int I> float partial_var_template_specialization_shouldnt_hit_codegen<float, I>;37 38// CIR-NOT: partial_var_template_specialization_shouldnt_hit_codegen39// LLVM-NOT: partial_var_template_specialization_shouldnt_hit_codegen40// OGCG-NOT: partial_var_template_specialization_shouldnt_hit_codegen41