diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-02-18 08:44:38 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-02-18 08:44:38 +0000 |
commit | c9109297856fd32f10c29127c3cdae6a38019a3e (patch) | |
tree | ec103fafb0b96a58d4c4b2a237918a4402eb8574 /lib/Basic/Targets.cpp | |
parent | 98559672cfbaa1484e719a80fd403e944db917e1 (diff) |
[Heikki Kultala] This patch contains the ABI changes for the TCE target.
TCE target has some too strict alignment rules (that the HW really does not require, but which caused problems elsewhere) for data types and an ABI change was decided.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@125833 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Basic/Targets.cpp')
-rw-r--r-- | lib/Basic/Targets.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Basic/Targets.cpp b/lib/Basic/Targets.cpp index 45b08e11fc..a8198e4ae7 100644 --- a/lib/Basic/Targets.cpp +++ b/lib/Basic/Targets.cpp @@ -2361,8 +2361,8 @@ namespace { LongDoubleFormat = &llvm::APFloat::IEEEsingle; DescriptionString = "E-p:32:32:32-i1:8:8-i8:8:32-" "i16:16:32-i32:32:32-i64:32:32-" - "f32:32:32-f64:64:64-v64:64:64-" - "v128:128:128-a0:0:64-n32"; + "f32:32:32-f64:32:32-v64:32:32-" + "v128:32:32-a0:0:32-n32"; } virtual void getTargetDefines(const LangOptions &Opts, |