aboutsummaryrefslogtreecommitdiff
path: root/gcc/ccmp.h
diff options
context:
space:
mode:
authorZhenqiang Chen <zhenqiang.chen@linaro.org>2014-11-17 06:03:07 +0000
committerZhenqiang Chen <zqchen@gcc.gnu.org>2014-11-17 06:03:07 +0000
commitf06cd23dc761a7769f8bdca26a42db59b71dec54 (patch)
tree6cfdb458bba92a9545deccf6b36dbf8290c4cc36 /gcc/ccmp.h
parent2d52a3a19d16f75e57f5278d722e227d29ba4d03 (diff)
downloadgcc-f06cd23dc761a7769f8bdca26a42db59b71dec54.zip
gcc-f06cd23dc761a7769f8bdca26a42db59b71dec54.tar.gz
gcc-f06cd23dc761a7769f8bdca26a42db59b71dec54.tar.bz2
Makefile.in: Add ccmp.o.
2014-11-17 Zhenqiang Chen <zhenqiang.chen@linaro.org> * Makefile.in: Add ccmp.o. * ccmp.c: New file. * ccmp.h: New file. * expr.c: include "ccmp.h" (expand_cond_expr_using_cmove): Handle VOIDmode. (expand_expr_real_1): Try to expand ccmp. From-SVN: r217641
Diffstat (limited to 'gcc/ccmp.h')
-rw-r--r--gcc/ccmp.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/gcc/ccmp.h b/gcc/ccmp.h
new file mode 100644
index 0000000..6144dbb
--- /dev/null
+++ b/gcc/ccmp.h
@@ -0,0 +1,25 @@
+/* Conditional comapre related functions.
+ Copyright (C) 2014-2014 Free Software Foundation, Inc.
+
+This file is part of GCC.
+
+GCC is free software; you can redistribute it and/or modify it under
+the terms of the GNU General Public License as published by the Free
+Software Foundation; either version 3, or (at your option) any later
+version.
+
+GCC is distributed in the hope that it will be useful, but WITHOUT ANY
+WARRANTY; without even the implied warranty of MERCHANTABILITY or
+FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+for more details.
+
+You should have received a copy of the GNU General Public License
+along with GCC; see the file COPYING3. If not see
+<http://www.gnu.org/licenses/>. */
+
+#ifndef GCC_CCMP_H
+#define GCC_CCMP_H
+
+extern rtx expand_ccmp_expr (gimple);
+
+#endif /* GCC_CCMP_H */