diff options
author | Chris Lattner <sabre@nondot.org> | 2010-03-04 21:07:38 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-03-04 21:07:38 +0000 |
commit | 3a47c4e0a3e8d13ee4fb06cc3a98f9cfa9982400 (patch) | |
tree | 38ce3fadb0d9541c4b51afeb960afc4ae13deaef /lib/Basic/Targets.cpp | |
parent | 97c00070868aa3230e67a35b74210bc202a5eb2d (diff) |
add TCE target support, patch by Pekka J!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@97746 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Basic/Targets.cpp')
-rw-r--r-- | lib/Basic/Targets.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/Basic/Targets.cpp b/lib/Basic/Targets.cpp index 43873ee0a3..ae6d5df673 100644 --- a/lib/Basic/Targets.cpp +++ b/lib/Basic/Targets.cpp @@ -1908,9 +1908,10 @@ namespace { FloatFormat = &llvm::APFloat::IEEEsingle; DoubleFormat = &llvm::APFloat::IEEEsingle; LongDoubleFormat = &llvm::APFloat::IEEEsingle; - DescriptionString = "E-p:32:32:32-a0:32:32" - "-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64" - "-f32:32:32-f64:32:64-n32"; + 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"; } virtual void getTargetDefines(const LangOptions &Opts, |