summaryrefslogtreecommitdiffstats
path: root/Tests/HIP/CompileFlags/main.hip
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/HIP/CompileFlags/main.hip')
-rw-r--r--Tests/HIP/CompileFlags/main.hip13
1 files changed, 13 insertions, 0 deletions
diff --git a/Tests/HIP/CompileFlags/main.hip b/Tests/HIP/CompileFlags/main.hip
new file mode 100644
index 0000000..3259f1d
--- /dev/null
+++ b/Tests/HIP/CompileFlags/main.hip
@@ -0,0 +1,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()
+{
+}