summaryrefslogtreecommitdiffstats
path: root/Tests/HIP/CompileFlags/main.hip
blob: 3259f1d31345a1546d5c4d23ff3bd18812bd1dcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifdef __HIP_DEVICE_COMPILE__
#  ifndef __gfx803__
#    error "Passed architecture gfx803, but got something else."
#  endif
#endif

#ifndef ALWAYS_DEFINE
#  error "ALWAYS_DEFINE not defined!"
#endif

int main()
{
}