summaryrefslogtreecommitdiff
path: root/gcc/ccmp.h
diff options
context:
space:
mode:
authorzqchen <zqchen@138bc75d-0d04-0410-961f-82ee72b054a4>2014-11-17 06:03:07 +0000
committerzqchen <zqchen@138bc75d-0d04-0410-961f-82ee72b054a4>2014-11-17 06:03:07 +0000
commit9336ad57736e990ccf1fac4f3dff5f4ed3016a09 (patch)
tree6cfdb458bba92a9545deccf6b36dbf8290c4cc36 /gcc/ccmp.h
parent01ee997be5bf814a4189fa578859a259596d990e (diff)
downloadgcc-9336ad57736e990ccf1fac4f3dff5f4ed3016a09.tar.gz
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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@217641 138bc75d-0d04-0410-961f-82ee72b054a4
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 00000000000..6144dbbb35d
--- /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 */