blob: 7dc73776a780bfffeeab4676e663661021973afe [file] [log] [blame]
Simon Atanasyane471d872012-07-08 09:10:14 +00001// RUN: %clang_cc1 -triple mips-unknown-linux-gnu -fsyntax-only -verify %s
2
3void foo() {
4 // MIPS DSP Rev 1
5
6 int a = 3;
7 __builtin_mips_wrdsp(2052, a); // expected-error{{argument to '__builtin_mips_wrdsp' must be a constant integer}}
8 __builtin_mips_rddsp(a); // expected-error{{argument to '__builtin_mips_rddsp' must be a constant integer}}
9}