| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 367620c commit 02b54af
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -38,7 +38,7 @@ | |||
| 38 | 38 | ||
| 39 | 39 | # Reset this number to 0 on major V8 upgrades. | |
| 40 | 40 | # Increment by one for each non-official patch applied to deps/v8. | |
| 41 | - 'v8_embedder_string': '-node.6', | ||
| 41 | + 'v8_embedder_string': '-node.7', | ||
| 42 | 42 | ||
| 43 | 43 | ##### V8 defaults for Node.js ##### | |
| 44 | 44 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -276,6 +276,10 @@ Code GenerateBytecodeHandler(Isolate* isolate, int builtin_index, | |||
| 276 | 276 | ||
| 277 | 277 | } // namespace | |
| 278 | 278 | ||
| 279 | + #ifdef _MSC_VER | ||
| 280 | + #pragma optimize( "", off ) | ||
| 281 | + #endif | ||
| 282 | + | ||
| 279 | 283 | // static | |
| 280 | 284 | void SetupIsolateDelegate::SetupBuiltinsInternal(Isolate* isolate) { | |
| 281 | 285 | Builtins* builtins = isolate->builtins(); | |
@@ -353,5 +357,10 @@ void SetupIsolateDelegate::SetupBuiltinsInternal(Isolate* isolate) { | |||
| 353 | 357 | builtins->MarkInitialized(); | |
| 354 | 358 | } | |
| 355 | 359 | ||
| 360 | + #ifdef _MSC_VER | ||
| 361 | + #pragma optimize( "", on ) | ||
| 362 | + #endif | ||
| 363 | + | ||
| 364 | + | ||
| 356 | 365 | } // namespace internal | |
| 357 | 366 | } // namespace v8 | |
| Back | FazBrowse Home | New Git URL |
0 commit comments