| Index: src/compiler/operator.h
|
| diff --git a/src/compiler/operator.h b/src/compiler/operator.h
|
| index 5b15b9728916dc76aaeea209e0cdefcdf6e511f4..6a12c69d911ff6b7db758c93c570cdbd11cdf3e6 100644
|
| --- a/src/compiler/operator.h
|
| +++ b/src/compiler/operator.h
|
| @@ -9,6 +9,7 @@
|
|
|
| #include "src/base/flags.h"
|
| #include "src/base/functional.h"
|
| +#include "src/base/macros.h"
|
| #include "src/zone.h"
|
|
|
| namespace v8 {
|
| @@ -180,6 +181,7 @@ class Operator1 : public Operator {
|
|
|
| // Helper to extract parameters from Operator1<*> operator.
|
| template <typename T>
|
| +DISABLE_CFI_UNRELATED_CAST
|
| inline T const& OpParameter(const Operator* op) {
|
| return reinterpret_cast<const Operator1<T>*>(op)->parameter();
|
| }
|
|
|