re PR objc/25328 (ICE in get_indirect_ref_operands, at tree-ssa-operands.c:1453)

PR objc/25328
	* objc/execute/pr25328.m: New test.

From-SVN: r108984
This commit is contained in:
Jakub Jelinek 2005-12-23 00:09:48 +01:00 committed by Jakub Jelinek
parent d4f0f2055b
commit 0c4fc6c9ed
2 changed files with 16 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2005-12-23 Jakub Jelinek <jakub@redhat.com>
PR objc/25328
* objc/execute/pr25328.m: New test.
2005-12-22 Mark Mitchell <mark@codesourcery.com>
PR c++/25364

View File

@ -0,0 +1,11 @@
/* PR objc/25328 */
int
main ()
{
int status = 0;
char msg[100] = "";
if (__builtin_strcmp (msg, ""))
status = 200;
return status;
}