diff options
author | Rafael Ávila de Espíndola <respindola@mozilla.com> | 2009-12-02 14:51:22 +0000 |
---|---|---|
committer | Rafael Ávila de Espíndola <respindola@mozilla.com> | 2009-12-02 14:51:22 +0000 |
commit | 325e6408a8d7bc42a5997c34615c91cac1e0a6b0 (patch) | |
tree | 40933ca74b710b354bd6c3a089ae3f47d452c1c6 /gold/testsuite/incremental_test_2.c | |
parent | e05da72d4d8289607dfc3f320ce28c25ed939f82 (diff) | |
download | fsf-binutils-gdb-325e6408a8d7bc42a5997c34615c91cac1e0a6b0.zip fsf-binutils-gdb-325e6408a8d7bc42a5997c34615c91cac1e0a6b0.tar.gz fsf-binutils-gdb-325e6408a8d7bc42a5997c34615c91cac1e0a6b0.tar.bz2 |
2009-12-02 Rafael Avila de Espindola <espindola@google.com>
* testsuite/Makefile.am: Add the incremental_test.sh test.
* testsuite/incremental_test.sh: New.
* testsuite/incremental_test_1.c: New.
* testsuite/incremental_test_2.c: New.
Diffstat (limited to 'gold/testsuite/incremental_test_2.c')
-rw-r--r-- | gold/testsuite/incremental_test_2.c | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gold/testsuite/incremental_test_2.c b/gold/testsuite/incremental_test_2.c new file mode 100644 index 0000000..050986e --- /dev/null +++ b/gold/testsuite/incremental_test_2.c @@ -0,0 +1,25 @@ +// Copyright 2009 Free Software Foundation, Inc. +// Written by Rafael Avila de Espindola <espindola@google.com> + +// This file is part of gold. + +// This program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 3 of the License, or +// (at your option) any later version. + +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, +// MA 02110-1301, USA. + +int b; + +int main(void) { + return 0; +} |