# HG changeset patch # User Shinji KONO # Date 1626159973 -32400 # Node ID 8dc2792ec4a47f80f64e918d42f2ca378f42ba0f # Parent 0cf2d4ade63d402d01e5051776641f67ef83c026 ... diff -r 0cf2d4ade63d -r 8dc2792ec4a4 clang/lib/Lex/Preprocessor.cpp --- a/clang/lib/Lex/Preprocessor.cpp Tue Jul 13 09:53:52 2021 +0900 +++ b/clang/lib/Lex/Preprocessor.cpp Tue Jul 13 16:06:13 2021 +0900 @@ -1439,7 +1439,6 @@ // Push the ( "string" ) tokens into the token stream. MacroInfo *MI = AllocateMacroInfo(Loc); Token Tok; - bool Invalid = false; std::unique_ptr lx(new Lexer(CurLexer->getFileID(),getSourceManager().getBufferOrFake(CurLexer->getFileID(), Loc),*this)); lx->InitLexer(src,src,src + strlen(src)); lx->Lex(Tok); diff -r 0cf2d4ade63d -r 8dc2792ec4a4 llvm/lib/IR/Type.cpp --- a/llvm/lib/IR/Type.cpp Tue Jul 13 09:53:52 2021 +0900 +++ b/llvm/lib/IR/Type.cpp Tue Jul 13 16:06:13 2021 +0900 @@ -192,6 +192,7 @@ Type *Type::getFP128Ty(LLVMContext &C) { return &C.pImpl->FP128Ty; } Type *Type::getPPC_FP128Ty(LLVMContext &C) { return &C.pImpl->PPC_FP128Ty; } Type *Type::getX86_MMXTy(LLVMContext &C) { return &C.pImpl->X86_MMXTy; } +Type *Type::getX86_AMXTy(LLVMContext &C) { return &C.pImpl->X86_AMXTy; } #ifndef noCbC Type *Type::get__CodeTy(LLVMContext &C) { return &C.pImpl->__CodeTy; } #endif