Index: src/runtime/runtime-utils.h |
diff --git a/src/runtime/runtime-utils.h b/src/runtime/runtime-utils.h |
index 17c78d5a0b5ca5f4c2266b62f04e4c686f2ad4cd..cf5d462f99ae9d9ddb6aeb76975d36739951cedb 100644 |
--- a/src/runtime/runtime-utils.h |
+++ b/src/runtime/runtime-utils.h |
@@ -21,15 +21,6 @@ namespace internal { |
} \ |
} while (0) |
-#define RUNTIME_ASSERT_HANDLIFIED(value, T) \ |
- do { \ |
- if (!(value)) { \ |
- V8_RuntimeError(__FILE__, __LINE__, #value); \ |
- isolate->ThrowIllegalOperation(); \ |
- return MaybeHandle<T>(); \ |
- } \ |
- } while (0) |
- |
#else |
#define RUNTIME_ASSERT(value) \ |
@@ -39,14 +30,6 @@ namespace internal { |
} \ |
} while (0) |
-#define RUNTIME_ASSERT_HANDLIFIED(value, T) \ |
- do { \ |
- if (!(value)) { \ |
- isolate->ThrowIllegalOperation(); \ |
- return MaybeHandle<T>(); \ |
- } \ |
- } while (0) |
- |
#endif |
// Cast the given object to a value of the specified type and store |