brintos

brintos / llvm-project-archived public Read only

0
0
Text · 290 B · 7440ef6 Raw
14 lines · c
1// RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -fopenmp %s -emit-llvm -o - | FileCheck %s2 3void __test_offloading_42_abcdef_bar_l123(void);4void use(int);5 6void foo(int a)7{8    #pragma omp target9        use(a);10 11    __test_offloading_42_abcdef_bar_l123();12    int somevar_abc123_;13}14