Remove excessive padding from LineNoCacheTy

The struct LineNoCacheTy is in SourceMgr.cpp inside anonymous namespace.
This diff changes the order of fields and removes the excessive padding
(8 bytes).

Patch by Alexander Shaposhnikov!

Differential revision: https://reviews.llvm.org/D23546

llvm-svn: 278838
This commit is contained in:
Benjamin Kramer 2016-08-16 19:20:10 +00:00
parent b52c8324a5
commit e89e3eda62

View File

@ -26,8 +26,8 @@ static const size_t TabStop = 8;
namespace {
struct LineNoCacheTy {
unsigned LastQueryBufferID;
const char *LastQuery;
unsigned LastQueryBufferID;
unsigned LineNoOfQuery;
};
}