diff mbox

[jit] Remove GCC_JIT_BINARY_OP_FLOATING_DIVIDE

Message ID 1390847923-9055-1-git-send-email-dmalcolm@redhat.com
State New
Headers show

Commit Message

David Malcolm Jan. 27, 2014, 6:38 p.m. UTC
Committed to branch dmalcolm/jit:

gcc/jit/
	* libgccjit.h (enum gcc_jit_binary_op): Remove
	GCC_JIT_BINARY_OP_FLOATING_DIVIDE, which I accidentally added
	as part of a880c0d9c642730550f39d328f29a1d9935cb07e.
---
 gcc/jit/ChangeLog.jit | 6 ++++++
 gcc/jit/libgccjit.h   | 6 ------
 2 files changed, 6 insertions(+), 6 deletions(-)
diff mbox

Patch

diff --git a/gcc/jit/ChangeLog.jit b/gcc/jit/ChangeLog.jit
index 0868fc3..3e8d2d3 100644
--- a/gcc/jit/ChangeLog.jit
+++ b/gcc/jit/ChangeLog.jit
@@ -1,3 +1,9 @@ 
+2014-01-27  David Malcolm  <dmalcolm@redhat.com>
+
+	* libgccjit.h (enum gcc_jit_binary_op): Remove
+	GCC_JIT_BINARY_OP_FLOATING_DIVIDE, which I accidentally added
+	as part of a880c0d9c642730550f39d328f29a1d9935cb07e.
+
 2014-01-24  David Malcolm  <dmalcolm@redhat.com>
 
 	* libgccjit.h: Update comments to eliminate the code-creation
diff --git a/gcc/jit/libgccjit.h b/gcc/jit/libgccjit.h
index 7f4f2d0..fa71518 100644
--- a/gcc/jit/libgccjit.h
+++ b/gcc/jit/libgccjit.h
@@ -480,12 +480,6 @@  enum gcc_jit_binary_op
      a floating-point result type indicates floating-point division.  */
   GCC_JIT_BINARY_OP_DIVIDE,
 
-  /* Quotient of division of floating-point values, without rounding;
-     analogous to:
-       (EXPR_A) / (EXPR_B)
-     in C.  */
-  GCC_JIT_BINARY_OP_FLOATING_DIVIDE,
-
   /* Remainder of division of arithmetic values; analogous to:
        (EXPR_A) / (EXPR_B)
      in C.  */