]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR objc/25328 (ICE in get_indirect_ref_operands, at tree-ssa-operands.c:1453)
authorJakub Jelinek <jakub@redhat.com>
Thu, 22 Dec 2005 23:09:48 +0000 (00:09 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Thu, 22 Dec 2005 23:09:48 +0000 (00:09 +0100)
PR objc/25328
* objc/execute/pr25328.m: New test.

From-SVN: r108984

gcc/testsuite/ChangeLog
gcc/testsuite/objc/execute/pr25328.m [new file with mode: 0644]

index dcf9b71c928eceef76bd8f2ac0594648e1f49b15..ce80c155761df84c5364755835eb1ecd80d68957 100644 (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
diff --git a/gcc/testsuite/objc/execute/pr25328.m b/gcc/testsuite/objc/execute/pr25328.m
new file mode 100644 (file)
index 0000000..7b85023
--- /dev/null
@@ -0,0 +1,11 @@
+/* PR objc/25328 */
+
+int
+main ()
+{
+  int status = 0;
+  char msg[100] = "";
+  if (__builtin_strcmp (msg, ""))
+    status = 200;
+  return status;
+}