diff options
author | Chris Lattner <sabre@nondot.org> | 2009-11-07 19:07:32 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-11-07 19:07:32 +0000 |
commit | 59a9178fbedb88427c8ff9e5fa7a8f2038f80a2e (patch) | |
tree | 5a5f825f89868e83578185abf5e47df6757441bb /lib/Target/PIC16/PIC16TargetMachine.cpp | |
parent | 9e496d223102cb3d5e37c513a697e30532e71bc0 (diff) |
indicate what the native integer types for the target are.
Please verify.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86397 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PIC16/PIC16TargetMachine.cpp')
-rw-r--r-- | lib/Target/PIC16/PIC16TargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/PIC16/PIC16TargetMachine.cpp b/lib/Target/PIC16/PIC16TargetMachine.cpp index 08307e7cef..e2acb851ea 100644 --- a/lib/Target/PIC16/PIC16TargetMachine.cpp +++ b/lib/Target/PIC16/PIC16TargetMachine.cpp @@ -34,7 +34,7 @@ PIC16TargetMachine::PIC16TargetMachine(const Target &T, const std::string &TT, const std::string &FS, bool Trad) : LLVMTargetMachine(T, TT), Subtarget(TT, FS, Trad), - DataLayout("e-p:16:8:8-i8:8:8-i16:8:8-i32:8:8"), + DataLayout("e-p:16:8:8-i8:8:8-i16:8:8-i32:8:8-n8"), InstrInfo(*this), TLInfo(*this), FrameInfo(TargetFrameInfo::StackGrowsUp, 8, 0) { } |