[HIPIFY][Linux] Rollback --cuda-compile-host-device on Linux

[Reason] It doesn't work with LLVM 9 and higher; Windows is fine


[ROCm/clr commit: dd2243f2fa]
This commit is contained in:
Evgeny Mankov
2019-10-29 20:53:54 +03:00
parent 21d798394a
commit d8e846fc91
@@ -128,10 +128,10 @@ bool pragma_once_outside_header() {
}
bool canCompileHostAndDeviceInOneJob() {
#if LLVM_VERSION_MAJOR < 9
return false;
#else
#if LLVM_VERSION_MAJOR >= 9 && defined(_WIN32)
return true;
#else
return false;
#endif
}