aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/ss/one.c
blob: b75a8ebcd7452b3bb2706a8a3315bfb7902fe153 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Copyright (C) 2005 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;
}