Skip to content

Commit

Permalink
[vm] Repair fingerprinting of recognized methods.
Browse files Browse the repository at this point in the history
Bug: dart-lang/sdk#36376
Change-Id: I8102d5d10abc98e4410c16d0d08bf5015e459b46
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/116481
Reviewed-by: Aart Bik <ajcbik@google.com>
Reviewed-by: Alexander Markov <alexmarkov@google.com>
Commit-Queue: Ryan Macnak <rmacnak@google.com>
  • Loading branch information
rmacnak-google authored and commit-bot@chromium.org committed Sep 11, 2019
1 parent 1e9a065 commit cbdbb46
Show file tree
Hide file tree
Showing 3 changed files with 362 additions and 354 deletions.
4 changes: 2 additions & 2 deletions runtime/vm/compiler/method_recognizer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -317,10 +317,10 @@ Token::Kind MethodTokenRecognizer::RecognizeTokenKind(const String& name_) {
static struct {
intptr_t symbol_id;
intptr_t cid;
intptr_t finger_print;
uint32_t finger_print;
const char* name;
} factory_recognizer_list[] = {RECOGNIZED_LIST_FACTORY_LIST(RECOGNIZE_FACTORY){
Symbols::kIllegal, -1, -1, NULL}};
Symbols::kIllegal, -1, 0, NULL}};

#undef RECOGNIZE_FACTORY

Expand Down
Loading

0 comments on commit cbdbb46

Please sign in to comment.