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 | 8714348afda10ca13f84c62db7b4f9c72a27b240 (patch) | |
tree | faf233f39f61a2784d8010b0cad4ae338b3e12ab /llvm/lib/Target/PIC16/PIC16TargetMachine.cpp | |
parent | 3f5124815d19fd8efc39021ef43106831877c476 (diff) | |
download | bcm5719-llvm-8714348afda10ca13f84c62db7b4f9c72a27b240.tar.gz bcm5719-llvm-8714348afda10ca13f84c62db7b4f9c72a27b240.zip |
indicate what the native integer types for the target are.
Please verify.
llvm-svn: 86397
Diffstat (limited to 'llvm/lib/Target/PIC16/PIC16TargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/PIC16/PIC16TargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/PIC16/PIC16TargetMachine.cpp b/llvm/lib/Target/PIC16/PIC16TargetMachine.cpp index 08307e7cef3..e2acb851ea2 100644 --- a/llvm/lib/Target/PIC16/PIC16TargetMachine.cpp +++ b/llvm/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) { } |