xref: /llvm-project/clang/test/utils/update_cc_test_checks/Inputs/replace-value-regex-across-runs.c (revision 2bfe0536e5143caad80f7a9691fa775cf451317b)
1 // RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -fopenmp -emit-llvm -o - %s | \
2 // RUN:     FileCheck %s
3 // RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -fopenmp -emit-llvm -o - %s | \
4 // RUN:     FileCheck %s
5 
foo(void)6 void foo(void) {
7   #pragma omp target
8   ;
9 }
10