Displaying 2 results from an estimated 2 matches for "flagrvaluereference".
2015 Feb 20
6
[LLVMdev] Questions before moving the new debug info hierarchy into place
...FlagExplicit = 1 << 7,
FlagPrototyped = 1 << 8,
FlagObjcClassComplete = 1 << 9,
FlagObjectPointer = 1 << 10,
FlagVector = 1 << 11,
FlagStaticMember = 1 << 12,
FlagLValueReference = 1 << 13,
FlagRValueReference = 1 << 14
I think the right short-term solution is to use these names directly in
assembly, giving us:
!MDDerivedType(flags: FlagPublic | FlagRValueReference, ...)
This is easy to implement and easy to CHECK against.
Sound good?
(Eventually, I'd like to use the `DW_AT` symbols...
2015 Feb 20
2
[LLVMdev] Questions before moving the new debug info hierarchy into place
...; 7,
> FlagPrototyped = 1 << 8,
> FlagObjcClassComplete = 1 << 9,
> FlagObjectPointer = 1 << 10,
> FlagVector = 1 << 11,
> FlagStaticMember = 1 << 12,
> FlagLValueReference = 1 << 13,
> FlagRValueReference = 1 << 14
>
> I think the right short-term solution is to use these names directly in
> assembly, giving us:
>
> !MDDerivedType(flags: FlagPublic | FlagRValueReference, ...)
>
> This is easy to implement and easy to CHECK against.
>
> Sound good?
>
>...