diff options
| author | Tim Northover <tnorthover@apple.com> | 2014-10-14 22:12:21 +0000 |
|---|---|---|
| committer | Tim Northover <tnorthover@apple.com> | 2014-10-14 22:12:21 +0000 |
| commit | 147cd2f6e5128f4ad07a862458cfe6c1e31ce8e2 (patch) | |
| tree | 86807c4a6d787b330a94474369529f13596a334f /clang/test | |
| parent | cf6ce0c8f750e8d62831f8058a9ee44f57a972cd (diff) | |
| download | bcm5719-llvm-147cd2f6e5128f4ad07a862458cfe6c1e31ce8e2.tar.gz bcm5719-llvm-147cd2f6e5128f4ad07a862458cfe6c1e31ce8e2.zip | |
ARM: remove ARM/Thumb distinction for preferred alignment.
Thumb1 has legitimate reasons for preferring 32-bit alignment of types
i1/i8/i16, since the 16-bit encoding of "add rD, sp, #imm" requires #imm to be
a multiple of 4. However, this is a trade-off betweem code size and RAM usage;
the DataLayout string is not the best place to represent it even if desired.
So this patch removes the extra Thumb requirements, hopefully making ARM and
Thumb completely compatible in this respect.
llvm-svn: 219735
Diffstat (limited to 'clang/test')
| -rw-r--r-- | clang/test/CodeGen/target-data.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGen/target-data.c b/clang/test/CodeGen/target-data.c index ab27a65c57a..a727a7f6da8 100644 --- a/clang/test/CodeGen/target-data.c +++ b/clang/test/CodeGen/target-data.c @@ -128,7 +128,7 @@ // RUN: %clang_cc1 -triple thumb-unknown-gnueabi -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=THUMB -// THUMB: target datalayout = "e-m:e-p:32:32-i1:8:32-i8:8:32-i16:16:32-i64:64-v128:64:128-a:0:32-n32-S64" +// THUMB: target datalayout = "e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64" // RUN: %clang_cc1 -triple arm-unknown-gnueabi -o - -emit-llvm %s | \ // RUN: FileCheck %s -check-prefix=ARM @@ -136,7 +136,7 @@ // RUN: %clang_cc1 -triple thumb-unknown -o - -emit-llvm -target-abi apcs-gnu \ // RUN: %s | FileCheck %s -check-prefix=THUMB-GNU -// THUMB-GNU: target datalayout = "e-m:e-p:32:32-i1:8:32-i8:8:32-i16:16:32-f64:32:64-v64:32:64-v128:32:128-a:0:32-n32-S32" +// THUMB-GNU: target datalayout = "e-m:e-p:32:32-f64:32:64-v64:32:64-v128:32:128-a:0:32-n32-S32" // RUN: %clang_cc1 -triple arm-unknown -o - -emit-llvm -target-abi apcs-gnu \ // RUN: %s | FileCheck %s -check-prefix=ARM-GNU |

