Home
last modified time | relevance | path

Searched refs:FunctionReturnThunksKind (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DCodeGen.h107 enum class FunctionReturnThunksKind : unsigned int { enum
/llvm-project-15.0.7/clang/lib/Frontend/
H A DCompilerInvocation.cpp1832 auto Val = llvm::StringSwitch<llvm::FunctionReturnThunksKind>(A->getValue()) in ParseCodeGenArgs()
1833 .Case("keep", llvm::FunctionReturnThunksKind::Keep) in ParseCodeGenArgs()
1834 .Case("thunk-extern", llvm::FunctionReturnThunksKind::Extern) in ParseCodeGenArgs()
1835 .Default(llvm::FunctionReturnThunksKind::Invalid); in ParseCodeGenArgs()
1840 else if (Val == llvm::FunctionReturnThunksKind::Invalid) in ParseCodeGenArgs()
1843 else if (Val == llvm::FunctionReturnThunksKind::Extern && in ParseCodeGenArgs()
/llvm-project-15.0.7/clang/include/clang/Driver/
H A DOptions.td2029 NormalizedValuesScope<"llvm::FunctionReturnThunksKind">,