Home | History | Annotate | Download | only in Sema
      1 // RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -fsyntax-only -verify %s
      2 
      3 void __attribute__((nomips16)) foo32(); // expected-warning {{unknown attribute 'nomips16' ignored}}
      4 void __attribute__((mips16)) foo16(); // expected-warning {{unknown attribute 'mips16' ignored}}
      5 
      6 
      7 
      8