[llvm] b6cf400 - Fix bots after a9ad65a2b34f

Nemanja Ivanovic via llvm-commits llvm-commits at lists.llvm.org
Sat Dec 28 11:08:54 PST 2019


Author: Nemanja Ivanovic
Date: 2019-12-28T13:07:18-06:00
New Revision: b6cf400aaeae6ac241f5a1c7f8b34ba7288eee0b

URL: https://github.com/llvm/llvm-project/commit/b6cf400aaeae6ac241f5a1c7f8b34ba7288eee0b
DIFF: https://github.com/llvm/llvm-project/commit/b6cf400aaeae6ac241f5a1c7f8b34ba7288eee0b.diff

LOG: 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.

Added: 
    

Modified: 
    llvm/lib/Target/PowerPC/PPCSubtarget.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Target/PowerPC/PPCSubtarget.cpp b/llvm/lib/Target/PowerPC/PPCSubtarget.cpp
index 7a46dc0943c3..dc19cb0ac309 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;


        


More information about the llvm-commits mailing list