From: Alexander Shaposhnikov Date: Tue, 20 Sep 2016 18:32:48 +0000 (+0000) Subject: [cleanup] Remove excessive padding from TextTokenRetokenizer::Position X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bcac03f0d8efb2ebdcc4315f42b26557099a0daf;p=clang [cleanup] Remove excessive padding from TextTokenRetokenizer::Position Reorder the fields of the struct TextTokenRetokenizer::Position to remove excessive padding. Test plan: make -j8 check-clang Differential revision: https://reviews.llvm.org/D24751 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@281995 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/CommentParser.cpp b/lib/AST/CommentParser.cpp index cb37ec35f4..c1c04239f5 100644 --- a/lib/AST/CommentParser.cpp +++ b/lib/AST/CommentParser.cpp @@ -40,11 +40,11 @@ class TextTokenRetokenizer { /// A position in \c Toks. struct Position { - unsigned CurToken; const char *BufferStart; const char *BufferEnd; const char *BufferPtr; SourceLocation BufferStartLoc; + unsigned CurToken; }; /// Current position in Toks.