Index: src/arguments.h |
=================================================================== |
--- src/arguments.h (revision 17104) |
+++ src/arguments.h (working copy) |
@@ -29,6 +29,7 @@ |
#define V8_ARGUMENTS_H_ |
#include "allocation.h" |
+#include "msan.h" |
namespace v8 { |
namespace internal { |
@@ -295,6 +296,7 @@ |
#define RUNTIME_FUNCTION(Type, Name) \ |
static Type __RT_impl_##Name(Arguments args, Isolate* isolate); \ |
Type Name(int args_length, Object** args_object, Isolate* isolate) { \ |
+ MSAN_RUNTIME_FUNCTION3(args_length, args_object, isolate); \ |
Arguments args(args_length, args_object); \ |
return __RT_impl_##Name(args, isolate); \ |
} \ |