LWG 3035. std::allocator's constructors should be constexpr
[official-gcc.git] / gcc / testsuite / gcc.dg / pr50613.c
blob27c6fba36361e74f9d75033dae7d6e7cb9101d41
1 /* PR tree-optimization/50613 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -fno-tree-ccp" } */
5 #include "strlenopt.h"
7 char buf[26];
9 static inline void
10 bar (char *__restrict dest, const char *__restrict src)
12 strcpy (dest, src);
15 void
16 foo (char *p)
18 if (strlen (p) < 50)
19 bar (buf, p);