mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-21 03:30:26 +08:00
Tweak directives in GCC tests for msp430-elf
2018-11-27 Jozef Lawrynowicz <jozef.l@mittosystems.com> Tweak directives in GCC tests for msp430-elf gcc/ChangeLog: * doc/sourcebuild.texi: Document check_effective_target_int_eq_float and check_effective_target_ptr_eq_long. gcc/testsuite/ChangeLog: * lib/target-supports.exp (check_effective_target_logical_op_short_circuit): Add msp430. (check_effective_target_int_eq_float): New. (check_effective_target_ptr_eq_long): New. * c-c++-common/pr41779.c: Require int_eq_float for dg-warning tests. * c-c++-common/pr57371-2.c: XFAIL optimized dump scan when sizeof (float) != sizeof (int). * gcc.dg/pr84670-4.c: Require ptr_eq_long. * gcc.dg/pr85859.c: Likewise. * gcc.dg/Wno-frame-address.c: Skip for msp430-elf. * gcc.dg/torture/stackalign/builtin-apply-2.c: Likewise. * gcc.dg/ifcvt-4.c: Likewise. * gcc.dg/pr34856.c: Likewise. * gcc.dg/builtin-apply2.c: Likewise. * gcc.dg/tree-ssa/ssa-dse-26.c: Likewise. * gcc.dg/attr-alloc_size-11.c: Remove dg-warning XFAIL for msp430. * gcc.dg/tree-ssa/20040204-1.c: Likewise. * gcc.dg/compat/struct-by-value-16a_x.c: Build at -O1 for msp430 so it fits. * gcc.dg/lto/20091013-1_0.c: Require ptr_eq_long. * gcc.dg/lto/20091013-1_1.c: Remove xfail-if for when sizeof(void *) != sizeof(long). * gcc.dg/lto/20091013-1_2.c: Likewise. * gcc.dg/tree-ssa/loop-1.c: Fix expected dg-final behaviour for msp430. * gcc.dg/tree-ssa/gen-vect-25.c: Likewise. * gcc.dg/tree-ssa/gen-vect-11.c: Likewise. * gcc.dg/tree-ssa/loop-35.c: Likewise. * gcc.dg/tree-ssa/pr23455.c: Likewise. * gcc.dg/weak/typeof-2.c: Likewise. * gcc.target/msp430/interrupt_fn_placement.c: Skip for 430 ISA. * gcc.target/msp430/pr78818-data-region.c: Fix scan-assembler text. * gcc.target/msp430/pr79242.c: Don't skip for -msmall. * gcc.target/msp430/special-regs.c: Use "__asm__" instead of "asm". From-SVN: r266500
This commit is contained in:
parent
660254d3e8
commit
27c16e61cb
@ -1,3 +1,8 @@
|
||||
2018-11-27 Jozef Lawrynowicz <jozef.l@mittosystems.com>
|
||||
|
||||
* doc/sourcebuild.texi: Document check_effective_target_int_eq_float
|
||||
and check_effective_target_ptr_eq_long.
|
||||
|
||||
2018-11-27 Alan Modra <amodra@gmail.com>
|
||||
|
||||
* config.gcc (powerpc*-*-freebsd*, powerpc-*-netbsd*),
|
||||
|
@ -1360,6 +1360,12 @@ Target has @code{int} that is 16 bits or shorter.
|
||||
@item long_neq_int
|
||||
Target has @code{int} and @code{long} with different sizes.
|
||||
|
||||
@item int_eq_float
|
||||
Target has @code{int} and @code{float} with the same size.
|
||||
|
||||
@item ptr_eq_long
|
||||
Target has pointers (@code{void *}) and @code{long} with the same size.
|
||||
|
||||
@item large_double
|
||||
Target supports @code{double} that is longer than @code{float}.
|
||||
|
||||
|
@ -1,3 +1,39 @@
|
||||
2018-11-27 Jozef Lawrynowicz <jozef.l@mittosystems.com>
|
||||
|
||||
* lib/target-supports.exp
|
||||
(check_effective_target_logical_op_short_circuit): Add msp430.
|
||||
(check_effective_target_int_eq_float): New.
|
||||
(check_effective_target_ptr_eq_long): New.
|
||||
* c-c++-common/pr41779.c: Require int_eq_float for dg-warning tests.
|
||||
* c-c++-common/pr57371-2.c: XFAIL optimized dump scan when
|
||||
sizeof (float) != sizeof (int).
|
||||
* gcc.dg/pr84670-4.c: Require ptr_eq_long.
|
||||
* gcc.dg/pr85859.c: Likewise.
|
||||
* gcc.dg/Wno-frame-address.c: Skip for msp430-elf.
|
||||
* gcc.dg/torture/stackalign/builtin-apply-2.c: Likewise.
|
||||
* gcc.dg/ifcvt-4.c: Likewise.
|
||||
* gcc.dg/pr34856.c: Likewise.
|
||||
* gcc.dg/builtin-apply2.c: Likewise.
|
||||
* gcc.dg/tree-ssa/ssa-dse-26.c: Likewise.
|
||||
* gcc.dg/attr-alloc_size-11.c: Remove dg-warning XFAIL for msp430.
|
||||
* gcc.dg/tree-ssa/20040204-1.c: Likewise.
|
||||
* gcc.dg/compat/struct-by-value-16a_x.c: Build at -O1 for msp430
|
||||
so it fits.
|
||||
* gcc.dg/lto/20091013-1_0.c: Require ptr_eq_long.
|
||||
* gcc.dg/lto/20091013-1_1.c: Remove xfail-if for when
|
||||
sizeof(void *) != sizeof(long).
|
||||
* gcc.dg/lto/20091013-1_2.c: Likewise.
|
||||
* gcc.dg/tree-ssa/loop-1.c: Fix expected dg-final behaviour for msp430.
|
||||
* gcc.dg/tree-ssa/gen-vect-25.c: Likewise.
|
||||
* gcc.dg/tree-ssa/gen-vect-11.c: Likewise.
|
||||
* gcc.dg/tree-ssa/loop-35.c: Likewise.
|
||||
* gcc.dg/tree-ssa/pr23455.c: Likewise.
|
||||
* gcc.dg/weak/typeof-2.c: Likewise.
|
||||
* gcc.target/msp430/interrupt_fn_placement.c: Skip for 430 ISA.
|
||||
* gcc.target/msp430/pr78818-data-region.c: Fix scan-assembler text.
|
||||
* gcc.target/msp430/pr79242.c: Don't skip for -msmall.
|
||||
* gcc.target/msp430/special-regs.c: Use "__asm__" instead of "asm".
|
||||
|
||||
2018-11-26 Martin Sebor <msebor@redhat.com>
|
||||
|
||||
PR 87756
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* PR41779: Wconversion cannot see through real*integer promotions. */
|
||||
/* { dg-do compile } */
|
||||
/* { dg-skip-if "doubles are floats" { "avr-*-*" } } */
|
||||
/* { dg-skip-if "doubles are floats" { avr-*-* } } */
|
||||
/* { dg-options "-std=c99 -Wconversion" { target c } } */
|
||||
/* { dg-options "-Wconversion" { target c++ } } */
|
||||
/* { dg-require-effective-target large_double } */
|
||||
@ -27,7 +27,7 @@ float f4(float x, unsigned char y)
|
||||
|
||||
float f5(float x, int y)
|
||||
{
|
||||
return x * y; /* { dg-warning "conversion" } */
|
||||
return x * y; /* { dg-warning "conversion" "" { target int_eq_float } } */
|
||||
}
|
||||
|
||||
double c1(float x, unsigned short y, int z)
|
||||
@ -52,5 +52,5 @@ double c4(float x, unsigned char y, int z)
|
||||
|
||||
double c5(float x, int y, int z)
|
||||
{
|
||||
return z ? x + x : y; /* { dg-warning "conversion" } */
|
||||
return z ? x + x : y; /* { dg-warning "conversion" "" { target int_eq_float } } */
|
||||
}
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
int foo1(int x) {
|
||||
return (float) x != 0;
|
||||
/* { dg-final { scan-tree-dump "\\(float\\)" "optimized" } } */
|
||||
/* { dg-final { scan-tree-dump "\\(float\\)" "optimized" { xfail { ! int_eq_float } } } } */
|
||||
}
|
||||
|
||||
int foo2(long long x) {
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* { dg-do compile } */
|
||||
/* { dg-skip-if "Cannot access arbitrary stack frames" { arm*-*-* avr-*-* hppa*-*-* ia64-*-* visium-*-* csky-*-* } } */
|
||||
/* { dg-skip-if "Cannot access arbitrary stack frames" { arm*-*-* avr-*-* hppa*-*-* ia64-*-* visium-*-* csky-*-* msp430-*-* } } */
|
||||
/* { dg-options "-Werror" } */
|
||||
/* { dg-additional-options "-mbackchain" { target { s390*-*-* } } } */
|
||||
|
||||
|
@ -47,8 +47,8 @@ typedef __SIZE_TYPE__ size_t;
|
||||
|
||||
/* The following tests fail because of missing range information. The xfail
|
||||
exclusions are PR79356. */
|
||||
TEST (signed char, SCHAR_MIN + 2, ALLOC_MAX); /* { dg-warning "argument 1 range \\\[13, \[0-9\]+\\\] exceeds maximum object size 12" "missing range info for signed char" { xfail { ! { aarch64*-*-* arm*-*-* avr-*-* alpha*-*-* ia64-*-* mips*-*-* or1k*-*-* pdp11*-*-* powerpc*-*-* sparc*-*-* s390*-*-* visium-*-* } } } } */
|
||||
TEST (short, SHRT_MIN + 2, ALLOC_MAX); /* { dg-warning "argument 1 range \\\[13, \[0-9\]+\\\] exceeds maximum object size 12" "missing range info for short" { xfail { ! { aarch64*-*-* arm*-*-* alpha*-*-* avr-*-* ia64-*-* mips*-*-* or1k*-*-* pdp11*-*-* powerpc*-*-* sparc*-*-* s390x-*-* visium-*-* } } } } */
|
||||
TEST (signed char, SCHAR_MIN + 2, ALLOC_MAX); /* { dg-warning "argument 1 range \\\[13, \[0-9\]+\\\] exceeds maximum object size 12" "missing range info for signed char" { xfail { ! { aarch64*-*-* arm*-*-* avr-*-* alpha*-*-* ia64-*-* mips*-*-* or1k*-*-* pdp11*-*-* powerpc*-*-* sparc*-*-* s390*-*-* visium-*-* msp430-*-* } } } } */
|
||||
TEST (short, SHRT_MIN + 2, ALLOC_MAX); /* { dg-warning "argument 1 range \\\[13, \[0-9\]+\\\] exceeds maximum object size 12" "missing range info for short" { xfail { ! { aarch64*-*-* arm*-*-* alpha*-*-* avr-*-* ia64-*-* mips*-*-* or1k*-*-* pdp11*-*-* powerpc*-*-* sparc*-*-* s390x-*-* visium-*-* msp430-*-* } } } } */
|
||||
TEST (int, INT_MIN + 2, ALLOC_MAX); /* { dg-warning "argument 1 range \\\[13, \[0-9\]+\\\] exceeds maximum object size 12" } */
|
||||
TEST (int, -3, ALLOC_MAX); /* { dg-warning "argument 1 range \\\[13, \[0-9\]+\\\] exceeds maximum object size 12" } */
|
||||
TEST (int, -2, ALLOC_MAX); /* { dg-warning "argument 1 range \\\[13, \[0-9\]+\\\] exceeds maximum object size 12" } */
|
||||
|
@ -1,7 +1,7 @@
|
||||
/* { dg-do run } */
|
||||
/* { dg-require-effective-target untyped_assembly } */
|
||||
/* { dg-skip-if "Variadic funcs have all args on stack. Normal funcs have args in registers." { "avr-*-* nds32*-*-*" } } */
|
||||
/* { dg-skip-if "Variadic funcs use different argument passing from normal funcs." { "riscv*-*-* or1k*-*-*" } } */
|
||||
/* { dg-skip-if "Variadic funcs use different argument passing from normal funcs." { "riscv*-*-* or1k*-*-* msp430-*-*" } } */
|
||||
/* { dg-skip-if "Variadic funcs use Base AAPCS. Normal funcs use VFP variant." { arm*-*-* && arm_hf_eabi } } */
|
||||
|
||||
/* PR target/12503 */
|
||||
|
@ -1,3 +1,5 @@
|
||||
/* { dg-options "-O1" { target msp430-*-* } } */
|
||||
|
||||
#include "compat-common.h"
|
||||
|
||||
#include "fp-struct-defs.h"
|
||||
|
@ -2,7 +2,7 @@
|
||||
/* { dg-additional-options "-misel" { target { powerpc*-*-* } } } */
|
||||
/* { dg-additional-options "-march=z196" { target { s390x-*-* } } } */
|
||||
/* { dg-additional-options "-mtune-ctrl=^one_if_conv_insn" { target { i?86-*-* x86_64-*-* } } } */
|
||||
/* { dg-skip-if "Multiple set if-conversion not guaranteed on all subtargets" { "arm*-*-* avr-*-* hppa*64*-*-* s390-*-* visium-*-*" riscv*-*-* } } */
|
||||
/* { dg-skip-if "Multiple set if-conversion not guaranteed on all subtargets" { "arm*-*-* avr-*-* hppa*64*-*-* s390-*-* visium-*-*" riscv*-*-* msp430-*-* } } */
|
||||
/* { dg-skip-if "" { "s390x-*-*" } { "-m31" } } */
|
||||
|
||||
typedef int word __attribute__((mode(word)));
|
||||
|
@ -1,5 +1,6 @@
|
||||
/* { dg-lto-do link } */
|
||||
/* { dg-require-effective-target fpic } */
|
||||
/* { dg-require-effective-target ptr_eq_long } */
|
||||
/* { dg-lto-options {{-fPIC -r -nostdlib -flto} {-fPIC -r -nostdlib -O2 -flto}} } */
|
||||
/* { dg-extra-ld-options "-flinker-output=nolto-rel" } */
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
/* { dg-xfail-if "cast to pointer of different size" { "avr-*-*" x86_64-*-mingw* } } */
|
||||
typedef struct HDC__ { int unused; } *HDC;
|
||||
typedef struct HFONT__ { int unused; } *HFONT;
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
/* { dg-xfail-if "cast to pointer of different size" { "avr-*-*" x86_64-*-mingw* } } */
|
||||
typedef struct HDC__ { int unused; } *HDC;
|
||||
typedef struct HFONT__ { int unused; } *HFONT;
|
||||
|
||||
|
@ -2,6 +2,7 @@
|
||||
/* { dg-options "-O2" } */
|
||||
/* { dg-options "-O2 -msse2" { target { i?86-*-* x86_64-*-* } } } */
|
||||
/* { dg-options "-O2 -maltivec" { target { powerpc*-*-linux* && powerpc_altivec_ok } } } */
|
||||
/* { dg-skip-if "no vector type for PSImode" { msp430-*-* } { "-mlarge" } { "" } } */
|
||||
|
||||
typedef __UINTPTR_TYPE__ uintptr_t;
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
/* { dg-do compile } */
|
||||
/* { dg-options "-O2 -fwrapv" } */
|
||||
/* { dg-require-effective-target ptr_eq_long } */
|
||||
|
||||
char *a;
|
||||
int b(void)
|
||||
|
@ -1,5 +1,6 @@
|
||||
/* { dg-do run } */
|
||||
/* { dg-options "-ftree-tail-merge -Wno-div-by-zero -O2 -fno-dce -fno-isolate-erroneous-paths-dereference -fno-tree-dce -fno-tree-vrp" } */
|
||||
/* { dg-require-effective-target ptr_eq_long } */
|
||||
|
||||
int b, c, d, e;
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
/* arm_hf_eabi: Variadic funcs use Base AAPCS. Normal funcs use VFP variant.
|
||||
avr: Variadic funcs don't pass arguments in registers, while normal funcs
|
||||
do. */
|
||||
/* { dg-skip-if "Variadic funcs use different argument passing from normal funcs" { arm_hf_eabi || { avr-*-* riscv*-*-* or1k*-*-* } } } */
|
||||
/* { dg-skip-if "Variadic funcs use different argument passing from normal funcs" { arm_hf_eabi || { avr-*-* riscv*-*-* or1k*-*-* msp430-*-* } } } */
|
||||
/* { dg-skip-if "Variadic funcs have all args on stack. Normal funcs have args in registers." { nds32*-*-* } { v850*-*-* } } */
|
||||
/* { dg-require-effective-target untyped_assembly } */
|
||||
|
||||
|
@ -33,4 +33,4 @@ void test55 (int x, int y)
|
||||
that the && should be emitted (based on BRANCH_COST). Fix this
|
||||
by teaching dom to look through && and register all components
|
||||
as true. */
|
||||
/* { dg-final { scan-tree-dump-times "link_error" 0 "optimized" { xfail { ! "alpha*-*-* arm*-*-* aarch64*-*-* powerpc*-*-* cris-*-* crisv32-*-* hppa*-*-* i?86-*-* mmix-*-* mips*-*-* m68k*-*-* moxie-*-* nds32*-*-* s390*-*-* sh*-*-* sparc*-*-* spu-*-* visium-*-* x86_64-*-* riscv*-*-* or1k*-*-*" } } } } */
|
||||
/* { dg-final { scan-tree-dump-times "link_error" 0 "optimized" { xfail { ! "alpha*-*-* arm*-*-* aarch64*-*-* powerpc*-*-* cris-*-* crisv32-*-* hppa*-*-* i?86-*-* mmix-*-* mips*-*-* m68k*-*-* moxie-*-* nds32*-*-* s390*-*-* sh*-*-* sparc*-*-* spu-*-* visium-*-* x86_64-*-* riscv*-*-* or1k*-*-* msp430-*-*" } } } } */
|
||||
|
@ -30,4 +30,4 @@ int main ()
|
||||
}
|
||||
|
||||
|
||||
/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { target { ! avr-*-* } } } } */
|
||||
/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { target { ! { avr-*-* msp430-*-* } } } } } */
|
||||
|
@ -54,5 +54,5 @@ int main (void)
|
||||
return main_1 (n + 2, (int *) &n);
|
||||
}
|
||||
|
||||
/* { dg-final { scan-tree-dump-times "vectorized 2 loops" 1 "vect" { target { ! avr-*-* } } } } */
|
||||
/* { dg-final { scan-tree-dump-times "Vectorizing an unaligned access" 0 "vect" { target { ! avr-*-* } } } } */
|
||||
/* { dg-final { scan-tree-dump-times "vectorized 2 loops" 1 "vect" { target { ! { avr-*-* msp430-*-* } } } } } */
|
||||
/* { dg-final { scan-tree-dump-times "Vectorizing an unaligned access" 0 "vect" { target { ! { avr-*-* msp430-*-* } } } } } */
|
||||
|
@ -43,10 +43,10 @@ int xxx(void)
|
||||
/* The SH targets always use separate instructions to load the address
|
||||
and to do the actual call - bsr is only generated by link time
|
||||
relaxation. */
|
||||
/* CRIS keeps the address in a register. */
|
||||
/* CRIS and MSP430 keep the address in a register. */
|
||||
/* m68k sometimes puts the address in a register, depending on CPU and PIC. */
|
||||
|
||||
/* { dg-final { scan-assembler-times "foo" 5 { xfail hppa*-*-* ia64*-*-* sh*-*-* cris-*-* crisv32-*-* fido-*-* m68k-*-* i?86-*-mingw* i?86-*-cygwin* x86_64-*-mingw* visium-*-* nvptx*-*-* pdp11*-*-* } } } */
|
||||
/* { dg-final { scan-assembler-times "foo" 5 { xfail hppa*-*-* ia64*-*-* sh*-*-* cris-*-* crisv32-*-* fido-*-* m68k-*-* i?86-*-mingw* i?86-*-cygwin* x86_64-*-mingw* visium-*-* nvptx*-*-* pdp11*-*-* msp430-*-* } } } */
|
||||
/* { dg-final { scan-assembler-times "foo,%r" 5 { target hppa*-*-* } } } */
|
||||
/* { dg-final { scan-assembler-times "= foo" 5 { target ia64*-*-* } } } */
|
||||
/* { dg-final { scan-assembler-times "call\[ \t\]*_foo" 5 { target i?86-*-mingw* i?86-*-cygwin* } } } */
|
||||
|
@ -67,5 +67,5 @@ void test4(struct a *A, unsigned LONG b)
|
||||
}
|
||||
}
|
||||
/* long index not hoisted for avr target PR 36561 */
|
||||
/* { dg-final { scan-tree-dump-times "Executing store motion of" 8 "lim2" { xfail { "avr-*-*" } } } } */
|
||||
/* { dg-final { scan-tree-dump-times "Executing store motion of" 6 "lim2" { target { "avr-*-*" } } } } */
|
||||
/* { dg-final { scan-tree-dump-times "Executing store motion of" 8 "lim2" { xfail { avr-*-* msp430-*-* } } } } */
|
||||
/* { dg-final { scan-tree-dump-times "Executing store motion of" 6 "lim2" { target { avr-*-* msp430-*-* } } } } */
|
||||
|
@ -25,5 +25,5 @@ bi_windup(unsigned int *outbuf, unsigned int bi_buf)
|
||||
/* We should eliminate one load of outcnt, which will in turn let us eliminate
|
||||
one multiply of outcnt which will in turn let us eliminate
|
||||
one add involving outcnt and outbuf. */
|
||||
/* { dg-final { scan-tree-dump-times "Eliminated: 3" 1 "pre" {target { ! avr-*-* } } } } */
|
||||
/* { dg-final { scan-tree-dump-times "Eliminated: 4" 1 "pre" {target { avr-*-* } } } } */
|
||||
/* { dg-final { scan-tree-dump-times "Eliminated: 3" 1 "pre" { target { ! { avr-*-* msp430-*-* } } } } } */
|
||||
/* { dg-final { scan-tree-dump-times "Eliminated: 4" 1 "pre" { target avr-*-* msp430-*-* } } } */
|
||||
|
@ -1,5 +1,6 @@
|
||||
/* { dg-do compile } */
|
||||
/* { dg-options "-O2 -fdump-tree-dse1-details -fno-short-enums" } */
|
||||
/* { dg-skip-if "temporary variable for constraint_expr is never used" { msp430-*-* } } */
|
||||
|
||||
enum constraint_expr_type
|
||||
{
|
||||
|
@ -48,6 +48,8 @@ int bar3 (int x)
|
||||
// { dg-final { if [string match m68k-*-* $target_triplet ] {return} } }
|
||||
// Likewise for moxie targets.
|
||||
// { dg-final { if [string match moxie-*-* $target_triplet ] {return} } }
|
||||
// Likewise for msp430 targets.
|
||||
// { dg-final { if [string match msp430-*-* $target_triplet ] {return} } }
|
||||
// Likewise for Visium targets.
|
||||
// { dg-final { if [string match visium-*-* $target_triplet ] {return} } }
|
||||
// { dg-final { scan-assembler "baz3.*baz3.*baz3.*baz3.*baz3.*baz3" } }
|
||||
|
@ -1,4 +1,5 @@
|
||||
/* { dg-do compile } */
|
||||
/* { dg-skip-if "" { "*-*-*" } { "-mcpu=msp430" } { "" } } */
|
||||
/* { dg-options "-mlarge -mcode-region=either -ffunction-sections" } */
|
||||
/* { dg-final { scan-assembler-not "\\.either\\.lowtext" } } */
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
/* { dg-do compile } */
|
||||
/* { dg-options "-mdata-region=either" } */
|
||||
|
||||
/* { dg-final { scan-assembler-not "\\.either" } } */
|
||||
/* { dg-final { scan-assembler-not "\\.either\\.data" } } */
|
||||
/* { dg-final { scan-assembler-not "\\.either\\.bss" } } */
|
||||
|
||||
#include "pr78818-real.c"
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* { dg-do compile } */
|
||||
/* { dg-skip-if "" { "*-*-*" } { "-mcpu=msp430" "-msmall" } { "" } } */
|
||||
/* { dg-skip-if "" { "*-*-*" } { "-mcpu=msp430" } { "" } } */
|
||||
/* { dg-options "-mcpu=msp430x" } */
|
||||
|
||||
typedef _Complex __int20 C;
|
||||
|
@ -7,10 +7,10 @@ int foo (void)
|
||||
register int cg1 __asm__("R2"); /* { dg-error "the register specified for 'cg1' is not general enough" } */
|
||||
register int cg2 __asm__("R3"); /* { dg-error "the register specified for 'cg2' is not general enough" } */
|
||||
|
||||
asm("" : "=r"(pc));
|
||||
asm("" : "=r"(sp));
|
||||
asm("" : "=r"(cg1));
|
||||
asm("" : "=r"(cg2));
|
||||
__asm__("" : "=r"(pc));
|
||||
__asm__("" : "=r"(sp));
|
||||
__asm__("" : "=r"(cg1));
|
||||
__asm__("" : "=r"(cg2));
|
||||
|
||||
return pc + sp + cg1 + cg2;
|
||||
}
|
||||
|
@ -2671,6 +2671,29 @@ proc check_effective_target_long_neq_int { } {
|
||||
}]
|
||||
}
|
||||
|
||||
# Return 1 if int size is equal to float size,
|
||||
# 0 otherwise.
|
||||
|
||||
proc check_effective_target_int_eq_float { } {
|
||||
return [check_no_compiler_messages int_eq_float object {
|
||||
int dummy[sizeof (int) >= sizeof (float) ? 1 : -1];
|
||||
}]
|
||||
}
|
||||
|
||||
# Return 1 if pointer size is equal to long size,
|
||||
# 0 otherwise.
|
||||
|
||||
proc check_effective_target_ptr_eq_long { } {
|
||||
# sizeof (void *) == 4 for msp430-elf -mlarge which is equal to
|
||||
# sizeof (long). Avoid false positive.
|
||||
if { [istarget msp430-*-*] } {
|
||||
return 0
|
||||
}
|
||||
return [check_no_compiler_messages ptr_eq_long object {
|
||||
int dummy[sizeof (void *) == sizeof (long) ? 1 : -1];
|
||||
}]
|
||||
}
|
||||
|
||||
# Return 1 if the target supports long double larger than double,
|
||||
# 0 otherwise.
|
||||
|
||||
@ -8472,6 +8495,7 @@ proc check_effective_target_logical_op_short_circuit {} {
|
||||
|| [istarget crisv32-*-*] || [istarget cris-*-*]
|
||||
|| [istarget csky*-*-*]
|
||||
|| [istarget mmix-*-*]
|
||||
|| [istarget msp430-*-*]
|
||||
|| [istarget s390*-*-*]
|
||||
|| [istarget powerpc*-*-*]
|
||||
|| [istarget nios2*-*-*]
|
||||
|
Loading…
x
Reference in New Issue
Block a user