Skip to content

Commit d8499bb

Browse files
authored
Fix uninitialized m_bHasAtomic64Use in DxilResource. (#3516)
1 parent 6482ac9 commit d8499bb

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

lib/DXIL/DxilResource.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ DxilResource::DxilResource()
2828
, m_SamplerFeedbackType((DXIL::SamplerFeedbackType)0)
2929
, m_bGloballyCoherent(false)
3030
, m_bHasCounter(false)
31-
, m_bROV(false) {
31+
, m_bROV(false)
32+
, m_bHasAtomic64Use(false) {
3233
}
3334

3435
CompType DxilResource::GetCompType() const {

0 commit comments

Comments
 (0)