URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [torture/] [pr35842.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile { target { *-*-mingw* } } } */ extern __attribute__((dllimport)) const int SSL_ImplementedCiphers[]; extern void SSL_GetCipherSuiteInfo(int cipherSuite); void nsCipherInfo(int SSL_NumImplementedCiphers) { int i; for (i = 0; i < SSL_NumImplementedCiphers; ++i) { const int i_id = SSL_ImplementedCiphers[i]; SSL_GetCipherSuiteInfo(i_id); } }
Go to most recent revision | Compare with Previous | Blame | View Log