DISubprogram
combined several fields into a single spFlags
field in LLVM 8.0
#106
Labels
DISubprogram
combined several fields into a single spFlags
field in LLVM 8.0
#106
As of LLVM 8.0, the
isLocal
,isDefinition
,virtuality
, andisOptimized
fields ofDISubprogram
have been combined into a singlespFlags
field. See llvm/llvm-project@adcdc1b. For instance, what used to be displayed as:!DISubprogram(..., isDefinition: True, isOptimized: True, ...)
Is now displayed as:
!DISubprogram(..., spFlags: DISPFlagDefinition | DISPFlagOptimized, ...)
The text was updated successfully, but these errors were encountered: