diff options
Diffstat (limited to 'lib/Target/ARM/ARMSubtarget.h')
-rw-r--r-- | lib/Target/ARM/ARMSubtarget.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/ARM/ARMSubtarget.h b/lib/Target/ARM/ARMSubtarget.h index aefd130..1188c6d 100644 --- a/lib/Target/ARM/ARMSubtarget.h +++ b/lib/Target/ARM/ARMSubtarget.h @@ -218,7 +218,7 @@ protected: std::string getDataLayout() const { if (isThumb()) { if (isAPCS_ABI()) { - return std::string("e-p:32:32-f64:32:32-i64:32:32-" + return std::string("e-p:32:32-f64:32:64-i64:32:64-" "i16:16:32-i8:8:32-i1:8:32-" "v128:32:128-v64:32:64-a:0:32-n32"); } else { @@ -228,7 +228,7 @@ protected: } } else { if (isAPCS_ABI()) { - return std::string("e-p:32:32-f64:32:32-i64:32:32-" + return std::string("e-p:32:32-f64:32:64-i64:32:64-" "v128:32:128-v64:32:64-n32"); } else { return std::string("e-p:32:32-f64:64:64-i64:64:64-" |