repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
utils
/
update_cc_test_checks
/
Inputs
/
generated-funcs-regex.c
blob
7440ef6592b64b3f5111e5482f579c52e901abc8
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
6
void
foo
(
int
a
)
7
{
8
#pragma omp target
9
use
(
a
);
10
11
__test_offloading_42_abcdef_bar_l123
();
12
int
somevar_abc123_
;
13
}