1/* Functional tests for the function hotpatching feature.  */
2
3/* { dg-do compile } */
4/* { dg-options "-O3 -mzarch" } */
5
6__attribute__((hotpatch(-1,0)))
7int main (void)
8{/* { dg-error "attribute is not a comma separated pair of non-negative integer constants or too large" } */
9  return 0;
10}
11