OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc3/] [gcc/] [testsuite/] [gcc.dg/] [ipa/] [modif-1.c] - Blame information for rev 516

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 298 jeremybenn
/* Verify that modification analysis detects modfications.  */
2
/* { dg-do compile } */
3
/* { dg-options "-O3 -c -fdump-ipa-inline-details -fno-early-inlining"  } */
4
 
5
struct whatever
6
{
7
  int first;
8
  unsigned second;
9
};
10
 
11
void func1 (struct whatever w);
12
void func2 (struct whatever *pw);
13
void func3 (int i);
14
void func4 (int *pi);
15
 
16
void the_test (struct whatever u, struct whatever v,
17
               struct whatever w, struct whatever x,
18
               int i, int k, int l)
19
{
20
  struct whatever *pw = &w;
21
  int *pk = &k;
22
 
23
  v.first = 9;
24
 
25
  func1 (u);
26
  func1 (v);
27
  func2 (pw);
28
  func2 (&x);
29
  func3 (i);
30
  func4 (pk);
31
  func4 (&l);
32
}
33
 
34
/* { dg-final { scan-ipa-dump-not "param 0\[^\\n\]*modified" "inline" } } */
35
/* { dg-final { scan-ipa-dump "param 1\[^\\n\]*modified" "inline" } } */
36
/* { dg-final { scan-ipa-dump "param 2\[^\\n\]*modified" "inline" } } */
37
/* { dg-final { scan-ipa-dump "param 3\[^\\n\]*modified" "inline" } } */
38
/* { dg-final { scan-ipa-dump-not "param 4\[^\\n\]*modified" "inline" } } */
39
/* { dg-final { scan-ipa-dump "param 5\[^\\n\]*modified" "inline" } } */
40
/* { dg-final { scan-ipa-dump "param 6\[^\\n\]*modified" "inline" } } */
41
/* { dg-final { cleanup-ipa-dump "inline" } } */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.