This is an archive of the discontinued LLVM Phabricator instance.

[AST] Pack CXXBoolLiteralExpr, CXXNullPtrLiteralExpr and CXXThisExpr
AbandonedPublic

Authored by riccibruno on Nov 9 2018, 8:55 AM.

Details

Reviewers
rsmith
Summary

Use the newly available space in the bit-fields of Stmt to
store some data from CXXBoolLiteralExpr, CXXNullPtrLiteralExpr
and CXXThisExpr.

This cuts the size of each of these classes by 1 pointer.

Diff Detail

Repository
rC Clang