PR objc/25328
authorjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 22 Dec 2005 23:09:48 +0000 (23:09 +0000)
committerjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 22 Dec 2005 23:09:48 +0000 (23:09 +0000)
* objc/execute/pr25328.m: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@108984 138bc75d-0d04-0410-961f-82ee72b054a4

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

index dcf9b71..ce80c15 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;
+}