aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/builtins-error.c
diff options
context:
space:
mode:
authorRichard Guenther <rguenther@suse.de>2007-11-27 12:30:15 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2007-11-27 12:30:15 +0000
commitf4577fcd487059390e485acfd3517648652e6557 (patch)
tree66d142fbae84eb74916a3fd22856d22cba0b8ab1 /gcc/testsuite/gcc.dg/builtins-error.c
parent28bbc9678774d275d38ef23ee82bd96aab2f2864 (diff)
downloadgcc-f4577fcd487059390e485acfd3517648652e6557.zip
gcc-f4577fcd487059390e485acfd3517648652e6557.tar.gz
gcc-f4577fcd487059390e485acfd3517648652e6557.tar.bz2
builtins.c (fold_builtin_1): Verify the argument types of BUILT_IN_ISNORMAL.
2007-11-27 Richard Guenther <rguenther@suse.de> * builtins.c (fold_builtin_1): Verify the argument types of BUILT_IN_ISNORMAL. (fold_builtin_n): Verify the number of arguments to variadic built-in functions. * gcc.dg/builtins-error.c: New testcase. From-SVN: r130465
Diffstat (limited to 'gcc/testsuite/gcc.dg/builtins-error.c')
-rw-r--r--gcc/testsuite/gcc.dg/builtins-error.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/builtins-error.c b/gcc/testsuite/gcc.dg/builtins-error.c
new file mode 100644
index 0000000..6acc215
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/builtins-error.c
@@ -0,0 +1,18 @@
+/* { dg-do compile } */
+
+struct X { int x; };
+
+int test1(struct X x)
+{
+ return __builtin_isnormal(x); /* { dg-error "non-floating-point argument" } */
+}
+
+int test2(double x)
+{
+ return __builtin_isgreater(x); /* { dg-error "too few arguments" } */
+}
+
+int test3(double x)
+{
+ return __builtin_isinf(x, x); /* { dg-error "too many arguments" } */
+}