diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-12-13 18:40:15 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-12-13 18:40:15 +0000 |
commit | f62bcc0d9cd4060ed295e032a336bb75f7a11eef (patch) | |
tree | ac3dd30d9be0daf110d413de725c5d0dbce0ea01 /clang/test/CodeGen/xcore-abi.c | |
parent | e8cba373a305e81c69996a5cdee93134f00d5f81 (diff) | |
download | bcm5719-llvm-f62bcc0d9cd4060ed295e032a336bb75f7a11eef.tar.gz bcm5719-llvm-f62bcc0d9cd4060ed295e032a336bb75f7a11eef.zip |
Use a: and s: instead of a0: and s0: in the DataLayout strings.
They are equivalent and the size of 'a' and 's' is unused.
llvm-svn: 197256
Diffstat (limited to 'clang/test/CodeGen/xcore-abi.c')
-rw-r--r-- | clang/test/CodeGen/xcore-abi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/xcore-abi.c b/clang/test/CodeGen/xcore-abi.c index 76a0fd82807..fbce5054f50 100644 --- a/clang/test/CodeGen/xcore-abi.c +++ b/clang/test/CodeGen/xcore-abi.c @@ -7,7 +7,7 @@ _Static_assert(_Alignof(double) == 4, "alignof double is wrong"); // RUN: %clang_cc1 -triple xcore-unknown-unknown -fno-signed-char -fno-common -emit-llvm -o - %s | FileCheck %s -// CHECK: target datalayout = "e-p:32:32:32-a0:0:32-n32-i1:8:32-i8:8:32-i16:16:32-i32:32:32-i64:32:32-f16:16:32-f32:32:32-f64:32:32" +// CHECK: target datalayout = "e-p:32:32:32-a:0:32-n32-i1:8:32-i8:8:32-i16:16:32-i32:32:32-i64:32:32-f16:16:32-f32:32:32-f64:32:32" // CHECK: target triple = "xcore-unknown-unknown" // CHECK: @g1 = global i32 0, align 4 |