Home
last modified time | relevance | path

Searched refs:NewExts (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DOpenCLBuiltins.td60 // Concatenate zero or more space-separated extensions in NewExts to Base and
62 class concatExtension<FunctionExtension Base, string NewExts> {
65 // Return Base extension if NewExts is empty,
66 !empty(NewExts) : Base.ExtName,
68 // otherwise, return NewExts if Base extension is empty,
69 !empty(Base.ExtName) : NewExts,
71 // otherwise, concatenate NewExts to Base.
72 true : Base.ExtName # " " # NewExts
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp5861 SmallVector<Instruction *, 4> NewExts; in tryToPromoteExts() local
5866 &NewExts, nullptr, *TLI); in tryToPromoteExts()
5893 (void)tryToPromoteExts(TPT, NewExts, NewlyMovedExts, TotalCreatedInstsCost); in tryToPromoteExts()