920501-8.x: New file, sprintf() does not support %f for HC11/HC12 targets.
* gcc.c-torture/execute/920501-8.x: New file, sprintf() does not support %f for HC11/HC12 targets. * gcc.c-torture/execute/930513-1.x: New file, likewise. * gcc.c-torture/execute/980709-1.x: New file, pow() is not available on HC11/HC12 targets. * gcc.c-torture/execute/990826-0.x: New file, likewise for floor(). From-SVN: r43233
This commit is contained in:
parent
c6af4c2e6c
commit
b05d820141
5 changed files with 29 additions and 0 deletions
|
@ -1,3 +1,12 @@
|
|||
2001-06-11 Stephane Carrez <Stephane.Carrez@worldnet.fr>
|
||||
|
||||
* gcc.c-torture/execute/920501-8.x: New file, sprintf() does not
|
||||
support %f for HC11/HC12 targets.
|
||||
* gcc.c-torture/execute/930513-1.x: New file, likewise.
|
||||
* gcc.c-torture/execute/980709-1.x: New file, pow() is not available
|
||||
on HC11/HC12 targets.
|
||||
* gcc.c-torture/execute/990826-0.x: New file, likewise for floor().
|
||||
|
||||
2001-06-11 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
|
||||
|
||||
* gcc.dg/wchar_t-1.c: New file.
|
||||
|
|
5
gcc/testsuite/gcc.c-torture/execute/920501-8.x
Normal file
5
gcc/testsuite/gcc.c-torture/execute/920501-8.x
Normal file
|
@ -0,0 +1,5 @@
|
|||
# sprintf() does not support %f on m6811/m6812 target.
|
||||
if { [istarget "m6811-*-*"] || [istarget "m6812-*-*"]} {
|
||||
return 1
|
||||
}
|
||||
return 0
|
5
gcc/testsuite/gcc.c-torture/execute/930513-1.x
Normal file
5
gcc/testsuite/gcc.c-torture/execute/930513-1.x
Normal file
|
@ -0,0 +1,5 @@
|
|||
# sprintf() does not support %f on m6811/m6812 target.
|
||||
if { [istarget "m6811-*-*"] || [istarget "m6812-*-*"]} {
|
||||
return 1
|
||||
}
|
||||
return 0
|
5
gcc/testsuite/gcc.c-torture/execute/980709-1.x
Normal file
5
gcc/testsuite/gcc.c-torture/execute/980709-1.x
Normal file
|
@ -0,0 +1,5 @@
|
|||
# pow() is not available on m6811/m6812 target, this test will not link.
|
||||
if { [istarget "m6811-*-*"] || [istarget "m6812-*-*"]} {
|
||||
return 1
|
||||
}
|
||||
return 0
|
5
gcc/testsuite/gcc.c-torture/execute/990826-0.x
Normal file
5
gcc/testsuite/gcc.c-torture/execute/990826-0.x
Normal file
|
@ -0,0 +1,5 @@
|
|||
# floor() is not available on m6811/m6812 target, this test will not link.
|
||||
if { [istarget "m6811-*-*"] || [istarget "m6812-*-*"]} {
|
||||
return 1
|
||||
}
|
||||
return 0
|
Loading…
Add table
Reference in a new issue