Commit 2e80c17d by Geoffrey Keating Committed by Geoffrey Keating

900227_01.C: short and pointer are the same size, so no warning should be produced on stormy16.

	* g++.old-deja/g++.bugs/900227_01.C: short and pointer are the
	same size, so no warning should be produced on stormy16.

	* g++.old-deja/g++.eh/badalloc1.C: Will always fail on stormy16
	due to oversized array.
	* g++.old-deja/g++.mike/ns15.C: Likewise.
	* g++.old-deja/g++.pt/crash16.C: Likewise.

From-SVN: r46738
parent 80ffc95e
2001-11-03 Geoffrey Keating <geoffk@redhat.com>
* g++.old-deja/g++.bugs/900227_01.C: short and pointer are the
same size, so no warning should be produced on stormy16.
* g++.old-deja/g++.eh/badalloc1.C: Will always fail on stormy16
due to oversized array.
* g++.old-deja/g++.mike/ns15.C: Likewise.
* g++.old-deja/g++.pt/crash16.C: Likewise.
2001-11-02 Graham Stott <grahams@redhat.com> 2001-11-02 Graham Stott <grahams@redhat.com>
* g++.dgother/debug1.C: Fix typos. * g++.dgother/debug1.C: Fix typos.
......
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
int main (); int main ();
short s = (short) &main; // WARNING - small integer XFAIL h8*-*-* short s = (short) &main; // WARNING - small integer XFAIL h8*-*-* stormy16-*-*
char c = (char) &main; // WARNING - small integer char c = (char) &main; // WARNING - small integer
int main () { return 0; } int main () { return 0; }
// excess errors test - XFAIL stormy16-*-*
// Copyright (C) 2000 Free Software Foundation, Inc. // Copyright (C) 2000 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 6 June 2000 <nathan@codesourcery.com> // Contributed by Nathan Sidwell 6 June 2000 <nathan@codesourcery.com>
......
// Build don't link: // Build don't link:
// excess errors test - XFAIL stormy16-*-*
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
......
// Build don't link: // Build don't link:
// Special g++ Options: // Special g++ Options:
// excess errors test - XFAIL stormy16-*-*
extern "C" void qsort(void *base, __SIZE_TYPE__ nmemb, __SIZE_TYPE__ size, extern "C" void qsort(void *base, __SIZE_TYPE__ nmemb, __SIZE_TYPE__ size,
int (*compar)(const void *, const void *)); int (*compar)(const void *, const void *));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment