diff options
author | Robert Lytton <robert@xmos.com> | 2013-08-23 09:27:44 +0000 |
---|---|---|
committer | Robert Lytton <robert@xmos.com> | 2013-08-23 09:27:44 +0000 |
commit | bff06ce221671ce0cec97b7677967a3dacf93359 (patch) | |
tree | ff09c40001b90d89ccc2c8848c23f61d3255bc5f /clang/test/CodeGen/xcore-abi.c | |
parent | 903c3250d25ff562736e7abb2c387cb95a504349 (diff) | |
download | bcm5719-llvm-bff06ce221671ce0cec97b7677967a3dacf93359.tar.gz bcm5719-llvm-bff06ce221671ce0cec97b7677967a3dacf93359.zip |
correct test RUN parameters
llvm-svn: 189093
Diffstat (limited to 'clang/test/CodeGen/xcore-abi.c')
-rw-r--r-- | clang/test/CodeGen/xcore-abi.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/clang/test/CodeGen/xcore-abi.c b/clang/test/CodeGen/xcore-abi.c index 262e6021516..1b12ce41d3c 100644 --- a/clang/test/CodeGen/xcore-abi.c +++ b/clang/test/CodeGen/xcore-abi.c @@ -1,12 +1,10 @@ -// RUN: %clang -target xcore -O0 -o - -emit-llvm -S %s | FileCheck %s +// 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 triple = "xcore" +// CHECK: target triple = "xcore-unknown-unknown" // CHECK: @g1 = global i32 0, align 4 int g1; -// CHECK: @g2 = common global i32 0, align 4 -int g2 __attribute__((common)); #include <stdarg.h> struct x { int a[5]; }; |