Software: Apache. PHP/5.4.45 

uname -a: Linux webm056.cluster010.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue
Sep 17 08:14:20 UTC 2024 x86_64
 

uid=243112(mycochar) gid=100(users) groups=100(users)  

Safe-mode: OFF (not secure)

/home/mycochar/www/image/photo/gcc-12.3.0/gcc/testsuite/gcc.dg/   drwxr-xr-x
Free 0 B of 0 B (0%)
Your ip: 216.73.216.77 - Server ip: 213.186.33.19
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    

[Enumerate]    [Encoder]    [Tools]    [Proc.]    [FTP Brute]    [Sec.]    [SQL]    [PHP-Code]    [Backdoor Host]    [Back-Connection]    [milw0rm it!]    [PHP-Proxy]    [Self remove]
    


Viewing file:     Wmissing-braces-fixits.c (5.23 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* { dg-options "-Wmissing-braces -fdiagnostics-show-caret" } */

struct sf2 { int i; int j; };
struct sf3 { int i; int j; int k; };
struct sa2 { int arr[2]; };
struct sa3 { int arr[3]; };

int arr_12[12] = \
  { 0, 1, 2, 3, 4, 5,
    6, 7, 8, 9, 10, 11};

int arr_12_1[12][1] = \
  { 0, 1, 2, 3, 4, 5, /* { dg-warning "missing braces around initializer" } */
    6, 7, 8, 9, 10, 11};
  /* { dg-begin-multiline-output "" }
   { 0, 1, 2, 3, 4, 5,
   ^
     {} {} {} {} {} {}
     6, 7, 8, 9, 10, 11};
     {} {} {} {} { } { }
     { dg-end-multiline-output "" } */

int arr_1_12[1][12] = \
  { 0, 1, 2, 3, 4, 5, /* { dg-warning "missing braces around initializer" } */
    6, 7, 8, 9, 10, 11};
  /* { dg-begin-multiline-output "" }
   { 0, 1, 2, 3, 4, 5,
   ^
     {
     6, 7, 8, 9, 10, 11};
                       }
     { dg-end-multiline-output "" } */

int arr_2_6[2][6] = \
  { 0, 1, 2, 3, 4, 5, /* { dg-warning "missing braces around initializer" } */
    6, 7, 8, 9, 10, 11};
  /* { dg-begin-multiline-output "" }
   { 0, 1, 2, 3, 4, 5,
   ^
     {               }
     6, 7, 8, 9, 10, 11};
     {                 }
     { dg-end-multiline-output "" } */

int arr_2_2_3[2][2][3] = \
  { 0, 1, 2, 3, 4, 5, /* { dg-warning "missing braces around initializer" } */
    6, 7, 8, 9, 10, 11};
  /* { dg-begin-multiline-output "" }
   { 0, 1, 2, 3, 4, 5,
   ^
     {{     } {      }}
     6, 7, 8, 9, 10, 11};
     {{     } {        }}
     { dg-end-multiline-output "" } */

int arr_2_3_2[2][3][2] = \
  { 0, 1, 2, 3, 4, 5, /* { dg-warning "missing braces around initializer" } */
    6, 7, 8, 9, 10, 11};
  /* { dg-begin-multiline-output "" }
   { 0, 1, 2, 3, 4, 5,
   ^
     {{  } {   } {   }}
     6, 7, 8, 9, 10, 11};
     {{  } {   } {     }}
     { dg-end-multiline-output "" } */

int arr_6_2[6][2] = \
  { 0, 1, 2, 3, 4, 5, /* { dg-warning "missing braces around initializer" } */
    6, 7, 8, 9, 10, 11};
  /* { dg-begin-multiline-output "" }
   { 0, 1, 2, 3, 4, 5,
   ^
     {   } {   } {   }
     6, 7, 8, 9, 10, 11};
     {   } {   } {     }
     { dg-end-multiline-output "" } */

int arr_3_2_2[3][2][2] = \
  { 0, 1, 2, 3, 4, 5, /* { dg-warning "missing braces around initializer" } */
    6, 7, 8, 9, 10, 11};
  /* { dg-begin-multiline-output "" }
   { 0, 1, 2, 3, 4, 5,
   ^
     {{  } {   }}{{  }
     6, 7, 8, 9, 10, 11};
     {   }}{{  } {     }}
     { dg-end-multiline-output "" } */

int arr_3_4[3][4] = \
  { 0, 1, 2, 3, 4, 5, /* { dg-warning "missing braces around initializer" } */
    6, 7, 8, 9, 10, 11};
  /* { dg-begin-multiline-output "" }
   { 0, 1, 2, 3, 4, 5,
   ^
     {         } {
     6, 7, 8, 9, 10, 11};
         } {           }
     { dg-end-multiline-output "" } */

int arr_4_3[4][3] = \
  { 0, 1, 2, 3, 4, 5, /* { dg-warning "missing braces around initializer" } */
    6, 7, 8, 9, 10, 11};
  /* { dg-begin-multiline-output "" }
   { 0, 1, 2, 3, 4, 5,
   ^
     {      } {      }
     6, 7, 8, 9, 10, 11};
     {      } {        }
     { dg-end-multiline-output "" } */

int arr_2_1_6[2][1][6] = \
  { 0, 1, 2, 3, 4, 5, /* { dg-warning "missing braces around initializer" } */
    6, 7, 8, 9, 10, 11};
  /* { dg-begin-multiline-output "" }
   { 0, 1, 2, 3, 4, 5,
   ^
     {{              }}
     6, 7, 8, 9, 10, 11};
     {{                }}
     { dg-end-multiline-output "" } */

struct sf2 arr_6_sf2[6] = \
  { 0, 1, 2, 3, 4, 5, /* { dg-warning "missing braces around initializer" } */
    6, 7, 8, 9, 10, 11};
  /* { dg-begin-multiline-output "" }
   { 0, 1, 2, 3, 4, 5,
   ^
     {   } {   } {   }
     6, 7, 8, 9, 10, 11};
     {   } {   } {     }
     { dg-end-multiline-output "" } */

struct sf3 arr_4_sf3[4] = \
  { 0, 1, 2, 3, 4, 5, /* { dg-warning "missing braces around initializer" } */
    6, 7, 8, 9, 10, 11};
  /* { dg-begin-multiline-output "" }
   { 0, 1, 2, 3, 4, 5,
   ^
     {      } {      }
     6, 7, 8, 9, 10, 11};
     {      } {        }
     { dg-end-multiline-output "" } */

struct sa2 arr_6_sa2[6] = \
  { 0, 1, 2, 3, 4, 5, /* { dg-warning "missing braces around initializer" } */
    6, 7, 8, 9, 10, 11};
  /* { dg-begin-multiline-output "" }
   { 0, 1, 2, 3, 4, 5,
   ^
     {{  }}{{  }}{{  }}
     6, 7, 8, 9, 10, 11};
     {{  }}{{  }}{{    }}
     { dg-end-multiline-output "" } */

struct sa3 arr_4_sa3[4] = \
  { 0, 1, 2, 3, 4, 5, /* { dg-warning "missing braces around initializer" } */
    6, 7, 8, 9, 10, 11};
  /* { dg-begin-multiline-output "" }
   { 0, 1, 2, 3, 4, 5,
   ^
     {{     }}{{     }}
     6, 7, 8, 9, 10, 11};
     {{     }}{{       }}
     { dg-end-multiline-output "" } */

/* PR c/81405.  */
int a5[][0][0] = { 1, 2 }; /* { dg-line pr_81405 } */

  /* { dg-warning "missing braces around initializer" "" { target c } pr_81405 } */
  /* { dg-begin-multiline-output "" }
 int a5[][0][0] = { 1, 2 };
                  ^
 {                  -----
                    {{1}}}}, {{{2 }}
     { dg-end-multiline-output "" } */

  /* { dg-warning "excess elements" "" { target c } pr_81405 } */
  /* { dg-begin-multiline-output "" }
 int a5[][0][0] = { 1, 2 };
                    ^
     { dg-end-multiline-output "" } */
  /* { dg-begin-multiline-output "" }
 int a5[][0][0] = { 1, 2 };
                       ^
     { dg-end-multiline-output "" } */
  /* { dg-begin-multiline-output "" }
 int a5[][0][0] = { 1, 2 };
 ^~~
     { dg-end-multiline-output "" } */

Enter:
 
Select:
 

Useful Commands
 
Warning. Kernel may be alerted using higher levels
Kernel Info:

Php Safe-Mode Bypass (Read Files)

File:

eg: /etc/passwd

Php Safe-Mode Bypass (List Directories):

Dir:

eg: /etc/

Search
  - regexp 

Upload
 
[ ok ]

Make Dir
 
[ ok ]
Make File
 
[ ok ]

Go Dir
 
Go File
 

--[ x2300 Locus7Shell v. 1.0a beta Modded by #!physx^ | www.LOCUS7S.com | Generation time: 0.0056 ]--