Make unsupported actually be a bool...

[ROCm/clr commit: 417fc92482]
This commit is contained in:
Chris Kitching
2017-10-23 17:06:04 +01:00
parent bfa8ad1880
commit cf14905f11
@@ -11,10 +11,10 @@ struct hipCounter {
llvm::StringRef hipName;
ConvTypes countType;
ApiTypes countApiType;
int unsupported;
bool unsupported;
};
#define HIP_UNSUPPORTED -1
#define HIP_UNSUPPORTED true
/// Macros to ignore.
extern const std::set<llvm::StringRef> CUDA_EXCLUDES;