summaryrefslogtreecommitdiff
path: root/tests/cl/program/build/macro-definitions.cl
blob: 1758c3f9488da10dda2497c9d5d9fc37b33bc7dc (plain)
1
2
3
4
5
6
7
8
9
10
/*!
[config]
name: Macro Definitions
clc_version_min: 10
build_options: -D BUILD_OPT1 -D BUILD_OPT2
!*/

kernel void dummy_kernel(){
    int var1 = BUILD_OPT1; int var2 = BUILD_OPT2;
}