mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-12 04:26:43 +00:00
[AArch64] Fix variable name ambiguity in r302078.
ArchKind is passed to the function, but it's also a type. llvm-svn: 302081
This commit is contained in:
parent
7eecfcb175
commit
a59429f8b7
@ -422,8 +422,10 @@ unsigned llvm::AArch64::getDefaultExtensions(StringRef CPU, unsigned ArchKind) {
|
||||
return AArch64ARCHNames[ArchKind].ArchBaseExtensions;
|
||||
|
||||
return StringSwitch<unsigned>(CPU)
|
||||
#define AARCH64_CPU_NAME(NAME, ID, DEFAULT_FPU, IS_DEFAULT, DEFAULT_EXT) \
|
||||
.Case(NAME, AArch64ARCHNames[(unsigned)ArchKind::ID].ArchBaseExtensions | DEFAULT_EXT)
|
||||
#define AARCH64_CPU_NAME(NAME, ID, DEFAULT_FPU, IS_DEFAULT, DEFAULT_EXT) \
|
||||
.Case(NAME, \
|
||||
AArch64ARCHNames[(unsigned)AArch64::ArchKind::ID].ArchBaseExtensions | \
|
||||
DEFAULT_EXT)
|
||||
#include "llvm/Support/AArch64TargetParser.def"
|
||||
.Default(AArch64::AEK_INVALID);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user