diff options
author | Chris Lattner <sabre@nondot.org> | 2009-11-07 18:59:41 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-11-07 18:59:41 +0000 |
commit | 1932e12d8bf435b9d449906bea7edcf183aa5d19 (patch) | |
tree | 2272e8265824e4d9956cf3f9f0b182c07feb5ea0 /lib/Basic/TargetInfo.cpp | |
parent | f8297f1512d29c88f20bf2901f04cc04182a3eee (diff) |
teach the various targets what native integer types they have.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86395 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Basic/TargetInfo.cpp')
-rw-r--r-- | lib/Basic/TargetInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Basic/TargetInfo.cpp b/lib/Basic/TargetInfo.cpp index 34d3fb2145..1318130b87 100644 --- a/lib/Basic/TargetInfo.cpp +++ b/lib/Basic/TargetInfo.cpp @@ -52,7 +52,7 @@ TargetInfo::TargetInfo(const std::string &T) : Triple(T) { DoubleFormat = &llvm::APFloat::IEEEdouble; LongDoubleFormat = &llvm::APFloat::IEEEdouble; DescriptionString = "E-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-" - "i64:64:64-f32:32:32-f64:64:64"; + "i64:64:64-f32:32:32-f64:64:64-n32"; UserLabelPrefix = "_"; } |