зеркало из https://github.com/microsoft/clang-1.git
Update for LLVM API change.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@75869 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
75185b5872
Коммит
d720046f18
|
@ -31,7 +31,7 @@ llvm::AllocaInst *CodeGenFunction::CreateTempAlloca(const llvm::Type *Ty,
|
|||
const char *Name) {
|
||||
if (!Builder.isNamePreserving())
|
||||
Name = "";
|
||||
return new llvm::AllocaInst(VMContext, Ty, 0, Name, AllocaInsertPt);
|
||||
return new llvm::AllocaInst(Ty, 0, Name, AllocaInsertPt);
|
||||
}
|
||||
|
||||
/// EvaluateExprAsBool - Perform the usual unary conversions on the specified
|
||||
|
|
|
@ -2126,7 +2126,7 @@ InputFilenames(llvm::cl::Positional, llvm::cl::desc("<input files>"));
|
|||
int main(int argc, char **argv) {
|
||||
llvm::sys::PrintStackTraceOnErrorSignal();
|
||||
llvm::PrettyStackTraceProgram X(argc, argv);
|
||||
llvm::LLVMContext Context;
|
||||
llvm::LLVMContext &Context = llvm::getGlobalContext();
|
||||
llvm::cl::ParseCommandLineOptions(argc, argv,
|
||||
"LLVM 'Clang' Compiler: http://clang.llvm.org\n");
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче