| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 5034729 commit 4f3c9e6
4 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -11,7 +11,7 @@ | |||
| 11 | 11 | #define V8_MAJOR_VERSION 6 | |
| 12 | 12 | #define V8_MINOR_VERSION 2 | |
| 13 | 13 | #define V8_BUILD_NUMBER 414 | |
| 14 | - #define V8_PATCH_LEVEL 74 | ||
| 14 | + #define V8_PATCH_LEVEL 75 | ||
| 15 | 15 | ||
| 16 | 16 | // Use 1 for candidates and 0 otherwise. | |
| 17 | 17 | // (Boolean macro values are not supported by all preprocessors.) | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -251,6 +251,9 @@ void StoreStoreElimination::Run(JSGraph* js_graph, Zone* temp_zone) { | |||
| 251 | 251 | } | |
| 252 | 252 | } | |
| 253 | 253 | ||
| 254 | + #if V8_OS_AIX | ||
| 255 | + ALLOW_UNUSED_TYPE | ||
| 256 | + #endif | ||
| 254 | 257 | bool RedundantStoreFinder::IsEffectful(Node* node) { | |
| 255 | 258 | return (node->op()->EffectInputCount() >= 1); | |
| 256 | 259 | } | |
@@ -552,6 +555,9 @@ bool UnobservableStore::operator==(const UnobservableStore other) const { | |||
| 552 | 555 | return (id_ == other.id_) && (offset_ == other.offset_); | |
| 553 | 556 | } | |
| 554 | 557 | ||
| 558 | + #if V8_OS_AIX | ||
| 559 | + ALLOW_UNUSED_TYPE | ||
| 560 | + #endif | ||
| 555 | 561 | bool UnobservableStore::operator!=(const UnobservableStore other) const { | |
| 556 | 562 | return !(*this == other); | |
| 557 | 563 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -53,11 +53,17 @@ class StringCharacterStreamIterator { | |||
| 53 | 53 | }; | |
| 54 | 54 | ||
| 55 | 55 | ||
| 56 | + #if V8_OS_AIX | ||
| 57 | + ALLOW_UNUSED_TYPE | ||
| 58 | + #endif | ||
| 56 | 59 | StringCharacterStreamIterator::StringCharacterStreamIterator( | |
| 57 | 60 | StringCharacterStream* stream) : stream_(stream) { | |
| 58 | 61 | ++(*this); | |
| 59 | 62 | } | |
| 60 | 63 | ||
| 64 | + #if V8_OS_AIX | ||
| 65 | + ALLOW_UNUSED_TYPE | ||
| 66 | + #endif | ||
| 61 | 67 | uint16_t StringCharacterStreamIterator::operator*() const { | |
| 62 | 68 | return current_; | |
| 63 | 69 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -96,6 +96,10 @@ | |||
| 96 | 96 | }], | |
| 97 | 97 | ], | |
| 98 | 98 | }], | |
| 99 | + ['OS=="aix"', { | ||
| 100 | + 'cflags': [ '-Wno-nonnull-compare', | ||
| 101 | + '-Wno-address' ], | ||
| 102 | + }], | ||
| 99 | 103 | ], | |
| 100 | 104 | 'msvs_disabled_warnings': [4800], | |
| 101 | 105 | }, | |
| Back | FazBrowse Home | New Git URL |
0 commit comments