mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-13 09:33:50 +00:00
[AArch64] Fix a use of uninitialized memory introduced in r203125,
and caught by the MSan bootstrap build bot. This should hopefully get the bot green at long last. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203441 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
984084aa05
commit
292fcee823
@ -30,9 +30,9 @@ void AArch64Subtarget::anchor() {}
|
||||
|
||||
AArch64Subtarget::AArch64Subtarget(StringRef TT, StringRef CPU, StringRef FS,
|
||||
bool LittleEndian)
|
||||
: AArch64GenSubtargetInfo(TT, CPU, FS), HasFPARMv8(false), HasNEON(false),
|
||||
HasCrypto(false), TargetTriple(TT), CPUString(CPU),
|
||||
IsLittleEndian(LittleEndian) {
|
||||
: AArch64GenSubtargetInfo(TT, CPU, FS), ARMProcFamily(Others),
|
||||
HasFPARMv8(false), HasNEON(false), HasCrypto(false), TargetTriple(TT),
|
||||
CPUString(CPU), IsLittleEndian(LittleEndian) {
|
||||
|
||||
initializeSubtargetFeatures(CPU, FS);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user