pr23180-1.C: Removed.

* g++.dg/init/pr23180-1.C: Removed.
        * g++.dg/init/pr23180-2.C: Removed.

From-SVN: r104122
This commit is contained in:
Josh Conner 2005-09-10 00:45:21 +00:00 committed by Josh Conner
parent 6816bd8aff
commit 072dd139ad
3 changed files with 5 additions and 28 deletions

View File

@ -1,3 +1,8 @@
2005-09-09 Josh Conner <jconner@apple.com>
* g++.dg/init/pr23180-1.C: Removed.
* g++.dg/init/pr23180-2.C: Removed.
2005-09-09 David Daney <ddaney@avtrex.com>
* gcc.c-torture/execute/20010124-1.c: Removed and split into two new

View File

@ -1,17 +0,0 @@
void saveLoadEntries(const void *);
void saveOrLoad() {
struct Track {
char soundName[15];
};
struct SaveLoadEntry {
int offs;
int type;
int size;
};
SaveLoadEntry trackEntries = {
((long) (&((Track *) 42)->soundName[0])) - 42,
0, 1
};
saveLoadEntries(&trackEntries);
}

View File

@ -1,11 +0,0 @@
struct Track {
char soundName[15];
};
struct SaveLoadEntry {
int offs;
int type;
int size;
};
int foobar = ((long) (& ((Track *) 42)->soundName[0])) - 42;