1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 04:02:41 +01:00

Tentative fix for r351701 and gcc 6.2 build on ubuntu

llvm-svn: 351705
This commit is contained in:
Serge Guelton 2019-01-20 23:06:45 +00:00
parent b46059d8bc
commit cc3b00cb60

View File

@ -158,9 +158,10 @@ private:
/// The values from the last parsed cpp hash file line comment if any.
struct CppHashInfoTy {
StringRef Filename;
int64_t LineNumber = 0;
int64_t LineNumber;
SMLoc Loc;
unsigned Buf = 0;
unsigned Buf;
CppHashInfoTy() : Filename(), LineNumber(0), Loc(), Buf(0) {}
};
CppHashInfoTy CppHashInfo;