diff --git a/sycl/source/detail/usm/usm_impl.cpp b/sycl/source/detail/usm/usm_impl.cpp index b89f952ccfd71..3db9df8b52337 100755 --- a/sycl/source/detail/usm/usm_impl.cpp +++ b/sycl/source/detail/usm/usm_impl.cpp @@ -273,14 +273,14 @@ void *alignedAlloc(size_t Alignment, size_t Size, const context &Ctxt, PrepareNotify.scopedNotify( (uint16_t)xpti::trace_point_type_t::mem_alloc_begin); #endif -} -void *RetVal = alignedAllocInternal(Alignment, Size, getSyclObjImpl(Ctxt).get(), - getSyclObjImpl(Dev).get(), Kind, PropList); + void *RetVal = + alignedAllocInternal(Alignment, Size, getSyclObjImpl(Ctxt).get(), + getSyclObjImpl(Dev).get(), Kind, PropList); #ifdef XPTI_ENABLE_INSTRUMENTATION -xpti::addMetadata(PrepareNotify.traceEvent(), "memory_ptr", - reinterpret_cast(RetVal)); + xpti::addMetadata(PrepareNotify.traceEvent(), "memory_ptr", + reinterpret_cast(RetVal)); #endif -return RetVal; + return RetVal; } void freeInternal(void *Ptr, const context_impl *CtxImpl) {