forked from OSchip/llvm-project
parent
72cdbf47a9
commit
8cd0079d16
|
@ -58,7 +58,7 @@ class LazyRuntimeFunction {
|
||||||
|
|
||||||
/// Initialises the lazy function with the name, return type, and the types
|
/// Initialises the lazy function with the name, return type, and the types
|
||||||
/// of the arguments.
|
/// of the arguments.
|
||||||
END_WITH_NULL
|
LLVM_END_WITH_NULL
|
||||||
void init(CodeGenModule *Mod, const char *name,
|
void init(CodeGenModule *Mod, const char *name,
|
||||||
llvm::Type *RetTy, ...) {
|
llvm::Type *RetTy, ...) {
|
||||||
CGM =Mod;
|
CGM =Mod;
|
||||||
|
|
|
@ -34,7 +34,7 @@ static inline Selector getKeywordSelector(ASTContext &Ctx, va_list argp) {
|
||||||
return getKeywordSelectorImpl(Ctx, First, argp);
|
return getKeywordSelectorImpl(Ctx, First, argp);
|
||||||
}
|
}
|
||||||
|
|
||||||
END_WITH_NULL
|
LLVM_END_WITH_NULL
|
||||||
static inline Selector getKeywordSelector(ASTContext &Ctx,
|
static inline Selector getKeywordSelector(ASTContext &Ctx,
|
||||||
const char *First, ...) {
|
const char *First, ...) {
|
||||||
va_list argp;
|
va_list argp;
|
||||||
|
@ -44,7 +44,7 @@ static inline Selector getKeywordSelector(ASTContext &Ctx,
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
END_WITH_NULL
|
LLVM_END_WITH_NULL
|
||||||
static inline void lazyInitKeywordSelector(Selector &Sel, ASTContext &Ctx,
|
static inline void lazyInitKeywordSelector(Selector &Sel, ASTContext &Ctx,
|
||||||
const char *First, ...) {
|
const char *First, ...) {
|
||||||
if (!Sel.isNull())
|
if (!Sel.isNull())
|
||||||
|
|
Loading…
Reference in New Issue