aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/openacc-noop-decl.c
blob: 41f756d835aa5fd4248853b57714fdf3e2af185b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s

// Check to ensure these are no-ops/don't really do anything.
void name();

void foo() {
#pragma acc declare
  // CHECK-NOT: declare
#pragma acc routine(name) worker
  // CHECK-NOT: routine
}
#pragma acc declare
  // CHECK-NOT: declare
#pragma acc routine(name) worker
  // CHECK-NOT: routine