Index: src/globals.h |
diff --git a/src/globals.h b/src/globals.h |
index 9b59e45ac8eca6d183da6b3a717f50c6c6884d87..b4a102b369df9ae812378a36e9e52f894535dcea 100644 |
--- a/src/globals.h |
+++ b/src/globals.h |
@@ -633,18 +633,6 @@ typedef void (*StoreBufferCallback)(Heap* heap, |
MemoryChunk* page, |
StoreBufferEvent event); |
- |
-// Union used for fast testing of specific double values. |
-union DoubleRepresentation { |
- double value; |
- int64_t bits; |
- DoubleRepresentation(double x) { value = x; } |
- bool operator==(const DoubleRepresentation& other) const { |
- return bits == other.bits; |
- } |
-}; |
- |
- |
// Union used for customized checking of the IEEE double types |
// inlined within v8 runtime, rather than going to the underlying |
// platform headers and libraries |