1 // RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -fopenmp %s -emit-llvm -o - | FileCheck %s 2 3 void __test_offloading_42_abcdef_bar_l123(void); 4 void use(int); 5 foo(int a)6void foo(int a) 7 { 8 #pragma omp target 9 use(a); 10 11 __test_offloading_42_abcdef_bar_l123(); 12 int somevar_abc123_; 13 } 14