aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/ss/one.c
blob: 866177926c984973ed4cb96920c4996cfd4cf936 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* APPLE LOCAL entire file */
/* Copyright (C) 2003 Free Software Foundation.
   Contributed by Devang Patel  <dpatel@apple.com>  */

/* Test simple use of symbol repository.
   Include file one.h is supplied as one.ssh in this directory,
   so that ss.exp can pick it up as candidate for making 
   repository.  */
/* { dg-do assemble } */

#include "one.h"
int main ()
{
  struct x_y_point a;
  a.x = 0;
  a.y = 0;
  return 0;
}