From b6cf400aaeae6ac241f5a1c7f8b34ba7288eee0b Mon Sep 17 00:00:00 2001 From: Nemanja Ivanovic Date: Sat, 28 Dec 2019 13:07:18 -0600 Subject: [PATCH] Fix bots after a9ad65a2b34f In the last commit, I neglected to initialize the new subtarget feature I added which caused failures on a few bots. This should fix that. --- llvm/lib/Target/PowerPC/PPCSubtarget.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/llvm/lib/Target/PowerPC/PPCSubtarget.cpp b/llvm/lib/Target/PowerPC/PPCSubtarget.cpp index 7a46dc0..dc19cb0 100644 --- a/llvm/lib/Target/PowerPC/PPCSubtarget.cpp +++ b/llvm/lib/Target/PowerPC/PPCSubtarget.cpp @@ -100,6 +100,7 @@ void PPCSubtarget::initializeEnvironment() { IsPPC6xx = false; IsE500 = false; FeatureMFTB = false; + AllowsUnalignedFPAccess = false; DeprecatedDST = false; HasLazyResolverStubs = false; HasICBT = false; -- 2.7.4