diff options
author | Christian Pirker <cpirker@a-bix.com> | 2014-03-28 14:35:30 +0000 |
---|---|---|
committer | Christian Pirker <cpirker@a-bix.com> | 2014-03-28 14:35:30 +0000 |
commit | 2a111609561eacc50ecf8f6cb9212164b5ce2aac (patch) | |
tree | 28d96eada44426b0323dbf56cdc159e4fbb205f5 /llvm/lib/Target/ARM/ARMSubtarget.cpp | |
parent | 6f3408259043edc3e1e8f88a9a593c2469bbe92f (diff) | |
download | bcm5719-llvm-2a111609561eacc50ecf8f6cb9212164b5ce2aac.tar.gz bcm5719-llvm-2a111609561eacc50ecf8f6cb9212164b5ce2aac.zip |
Add ARM big endian Target (armeb, thumbeb)
Reviewed at http://llvm-reviews.chandlerc.com/D3095
llvm-svn: 205007
Diffstat (limited to 'llvm/lib/Target/ARM/ARMSubtarget.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/ARMSubtarget.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMSubtarget.cpp b/llvm/lib/Target/ARM/ARMSubtarget.cpp index 69b496f386e..a290136f6bd 100644 --- a/llvm/lib/Target/ARM/ARMSubtarget.cpp +++ b/llvm/lib/Target/ARM/ARMSubtarget.cpp @@ -75,12 +75,14 @@ IT(cl::desc("IT block support"), cl::Hidden, cl::init(DefaultIT), clEnumValEnd)); ARMSubtarget::ARMSubtarget(const std::string &TT, const std::string &CPU, - const std::string &FS, const TargetOptions &Options) + const std::string &FS, bool IsLittle, + const TargetOptions &Options) : ARMGenSubtargetInfo(TT, CPU, FS) , ARMProcFamily(Others) , ARMProcClass(None) , stackAlignment(4) , CPUString(CPU) + , IsLittle(IsLittle) , TargetTriple(TT) , Options(Options) , TargetABI(ARM_ABI_UNKNOWN) { |