From 8cd0079d166889b5d2298dd06c76bcbc1a092696 Mon Sep 17 00:00:00 2001 From: Reid Kleckner Date: Tue, 4 Nov 2014 01:13:43 +0000 Subject: [PATCH] Use the new LLVM_END_WITH_NULL name llvm-svn: 221217 --- clang/lib/CodeGen/CGObjCGNU.cpp | 2 +- clang/lib/StaticAnalyzer/Checkers/SelectorExtras.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/clang/lib/CodeGen/CGObjCGNU.cpp b/clang/lib/CodeGen/CGObjCGNU.cpp index 562bbef..8d95369 100644 --- a/clang/lib/CodeGen/CGObjCGNU.cpp +++ b/clang/lib/CodeGen/CGObjCGNU.cpp @@ -58,7 +58,7 @@ class LazyRuntimeFunction { /// Initialises the lazy function with the name, return type, and the types /// of the arguments. - END_WITH_NULL + LLVM_END_WITH_NULL void init(CodeGenModule *Mod, const char *name, llvm::Type *RetTy, ...) { CGM =Mod; diff --git a/clang/lib/StaticAnalyzer/Checkers/SelectorExtras.h b/clang/lib/StaticAnalyzer/Checkers/SelectorExtras.h index f2ddb27..41f70d7 100644 --- a/clang/lib/StaticAnalyzer/Checkers/SelectorExtras.h +++ b/clang/lib/StaticAnalyzer/Checkers/SelectorExtras.h @@ -34,7 +34,7 @@ static inline Selector getKeywordSelector(ASTContext &Ctx, va_list argp) { return getKeywordSelectorImpl(Ctx, First, argp); } -END_WITH_NULL +LLVM_END_WITH_NULL static inline Selector getKeywordSelector(ASTContext &Ctx, const char *First, ...) { va_list argp; @@ -44,7 +44,7 @@ static inline Selector getKeywordSelector(ASTContext &Ctx, return result; } -END_WITH_NULL +LLVM_END_WITH_NULL static inline void lazyInitKeywordSelector(Selector &Sel, ASTContext &Ctx, const char *First, ...) { if (!Sel.isNull()) -- 2.7.4