Revert "[ADT] Change the `IntervalMap` alignment assert for x86 MSVC"
authorAleksandr Urakov <aleksandr.urakov@jetbrains.com>
Tue, 9 Oct 2018 07:44:17 +0000 (07:44 +0000)
committerAleksandr Urakov <aleksandr.urakov@jetbrains.com>
Tue, 9 Oct 2018 07:44:17 +0000 (07:44 +0000)
This reverts commit 7f9eb168a9a8f5ff4fc931a00aec43e8706afecb.

llvm-svn: 344020

llvm/include/llvm/ADT/IntervalMap.h

index a72967c..e2fced1 100644 (file)
@@ -964,7 +964,7 @@ public:
 
 private:
   // The root data is either a RootLeaf or a RootBranchData instance.
-  LLVM_ALIGNAS(RootLeaf) AlignedCharArrayUnion<RootLeaf, RootBranchData> data;
+  AlignedCharArrayUnion<RootLeaf, RootBranchData> data;
 
   // Tree height.
   // 0: Leaves in root.