diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-05-27 07:00:26 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-05-27 07:00:26 +0000 |
commit | 350b9f3e8ff19bcb1f5130ad4fbc99dde4ec24c9 (patch) | |
tree | 0a24d375ecc1034b39657ad9e62d04a56f00a922 /lib/Basic/Targets.cpp | |
parent | 473916c038f75fa3b0c51a0bc7afc5b082e5c22f (diff) |
Darwin/ARM seems to support mac68k align as well.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@104828 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Basic/Targets.cpp')
-rw-r--r-- | lib/Basic/Targets.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Basic/Targets.cpp b/lib/Basic/Targets.cpp index 99e5f669d7..92fd417173 100644 --- a/lib/Basic/Targets.cpp +++ b/lib/Basic/Targets.cpp @@ -1670,7 +1670,9 @@ protected: public: DarwinARMTargetInfo(const std::string& triple) - : DarwinTargetInfo<ARMTargetInfo>(triple) {} + : DarwinTargetInfo<ARMTargetInfo>(triple) { + HasAlignMac68kSupport = true; + } }; } // end anonymous namespace. |