We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa26924 commit 67a0ed5Copy full SHA for 67a0ed5
IGC/Compiler/CISACodeGen/Platform.hpp
@@ -1620,10 +1620,8 @@ bool enableMultiGRFAccessWA() const
1620
// Return true if platform has structured control-flow instructions and IGC wants to use them.
1621
bool hasSCF() const
1622
{
1623
- bool doscf = true;
1624
// DG2 and PVC still has SCF, but igc will stop using them.
1625
- doscf = !isProductChildOf(IGFX_DG2);
1626
- return doscf;
+ return !isProductChildOf(IGFX_DG2);
1627
}
1628
1629
const SCompilerHwCaps& GetCaps() { return m_caps; }
0 commit comments