SWDEV-439637 - Updated to compile with clang compiler

Change-Id: Ib0a8e1cc007f083fb1d1f4363cf89ba76ad3c4f2
This commit is contained in:
Anusha GodavarthySurya
2024-01-02 14:56:03 +00:00
committed by Anusha Godavarthy Surya
parent e37aaeae09
commit a1b2cbe44e
6 changed files with 106 additions and 96 deletions
+1 -1
View File
@@ -232,7 +232,7 @@ hipError_t hipStreamAttachMemAsync(hipStream_t stream, void* dev_ptr,
size_t length, unsigned int flags) {
HIP_INIT_API(hipStreamAttachMemAsync, stream, dev_ptr, length, flags);
// stream can be null, length can be 0.
if ((dev_ptr == nullptr)) {
if (dev_ptr == nullptr) {
HIP_RETURN(hipErrorInvalidValue);
}