1*2bfe0536SJoel E. Denny // RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -fopenmp -emit-llvm -o - %s | \ 2*2bfe0536SJoel E. Denny // RUN: FileCheck %s 3*2bfe0536SJoel E. Denny // RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -fopenmp -emit-llvm -o - %s | \ 4*2bfe0536SJoel E. Denny // RUN: FileCheck %s 5*2bfe0536SJoel E. Denny foo(void)6*2bfe0536SJoel E. Dennyvoid foo(void) { 7*2bfe0536SJoel E. Denny #pragma omp target 8*2bfe0536SJoel E. Denny ; 9*2bfe0536SJoel E. Denny } 10