Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DCodeGen.h127 enum class FunctionReturnThunksKind : unsigned int { enum
/freebsd-14.2/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInvocation.cpp1944 auto Val = llvm::StringSwitch<llvm::FunctionReturnThunksKind>(A->getValue()) in ParseCodeGenArgs()
1945 .Case("keep", llvm::FunctionReturnThunksKind::Keep) in ParseCodeGenArgs()
1946 .Case("thunk-extern", llvm::FunctionReturnThunksKind::Extern) in ParseCodeGenArgs()
1947 .Default(llvm::FunctionReturnThunksKind::Invalid); in ParseCodeGenArgs()
1952 else if (Val == llvm::FunctionReturnThunksKind::Invalid) in ParseCodeGenArgs()
1955 else if (Val == llvm::FunctionReturnThunksKind::Extern && in ParseCodeGenArgs()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td2692 NormalizedValuesScope<"llvm::FunctionReturnThunksKind">,