* gcc.dg/tree-ssa/inline-2.c (foo): Add 'inline' keyword.
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 7 Nov 2008 08:58:55 +0000 (08:58 +0000)
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 7 Nov 2008 08:58:55 +0000 (08:58 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@141663 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/tree-ssa/inline-2.c

index c64a633..02d8885 100644 (file)
@@ -1,3 +1,7 @@
+2008-11-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       * gcc.dg/tree-ssa/inline-2.c (foo): Add 'inline' keyword.
+
 2008-11-06  Sebastian Pop  <sebastian.pop@amd.com>
 
        * gcc.dg/graphite/pr37943.c: Fix missing end of file.
index 8a7b907..72b61c3 100644 (file)
@@ -5,7 +5,7 @@
    and the call to link_error optimized away.  */
 
 extern void link_error (void);
-int __attribute__((always_inline)) foo(void) { return 0; }
+inline int __attribute__((always_inline)) foo(void) { return 0; }
 
 int main()
 {