Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DCodeGen.h127 enum class FunctionReturnThunksKind : unsigned int { enum
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInvocation.cpp2022 auto Val = llvm::StringSwitch<llvm::FunctionReturnThunksKind>(A->getValue()) in ParseCodeGenArgs()
2023 .Case("keep", llvm::FunctionReturnThunksKind::Keep) in ParseCodeGenArgs()
2024 .Case("thunk-extern", llvm::FunctionReturnThunksKind::Extern) in ParseCodeGenArgs()
2025 .Default(llvm::FunctionReturnThunksKind::Invalid); in ParseCodeGenArgs()
2030 else if (Val == llvm::FunctionReturnThunksKind::Invalid) in ParseCodeGenArgs()
2033 else if (Val == llvm::FunctionReturnThunksKind::Extern && in ParseCodeGenArgs()
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td2814 NormalizedValuesScope<"llvm::FunctionReturnThunksKind">,