Simon Atanasyan | e471d87 | 2012-07-08 09:10:14 +0000 | [diff] [blame^] | 1 | // RUN: %clang_cc1 -triple mips-unknown-linux-gnu -fsyntax-only -verify %s |
2 | |||||
3 | void 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 | } |