Displaying 2 results from an estimated 2 matches for "flagpriv".
2015 Feb 20
6
[LLVMdev] Questions before moving the new debug info hierarchy into place
...flags: 16384, ...)
than the pretty-printed comments in the old:
!{!"...\\0016384", ...} ; ... [public] [rvalue reference]
I don't want to regress here.
In `DIDescriptor`, the flags are described in an enum bitfield:
FlagAccessibility = 1 << 0 | 1 << 1,
FlagPrivate = 1,
FlagProtected = 2,
FlagPublic = 3,
FlagFwdDecl = 1 << 2,
FlagAppleBlock = 1 << 3,
FlagBlockByrefStruct = 1 << 4,
FlagVirtual = 1 << 5,
FlagArtificial = 1 << 6,
FlagE...
2015 Feb 20
2
[LLVMdev] Questions before moving the new debug info hierarchy into place
...omments in the old:
>
> !{!"...\\0016384", ...} ; ... [public] [rvalue reference]
>
> I don't want to regress here.
>
> In `DIDescriptor`, the flags are described in an enum bitfield:
>
> FlagAccessibility = 1 << 0 | 1 << 1,
> FlagPrivate = 1,
> FlagProtected = 2,
> FlagPublic = 3,
> FlagFwdDecl = 1 << 2,
> FlagAppleBlock = 1 << 3,
> FlagBlockByrefStruct = 1 << 4,
> FlagVirtual = 1 << 5,
> FlagArtifici...