Ignore:
Timestamp:
Jun 16, 2019, 6:48:13 PM (6 years ago)
Author:
Darin Adler
Message:

Rename AtomicString to AtomString
https://bugs.webkit.org/show_bug.cgi?id=195276

Reviewed by Michael Catanzaro.

  • many files: Let do-webcore-rename do the renaming.

Source/WTF:

  • wtf/text/AtomString.h: After renaming, added AtomicString as a synonym for

now; helps smooth things over with a tiny bit of Apple internal software so
we don't have to do this all at once. Can remove it soon.

Tools:

  • Scripts/do-webcore-rename: Updated with a list of all the identifiers

that mention "atomic string" and changed them to instead say "atom string".

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/b3/B3Opcode.h

    r243330 r246490  
    466466}
    467467
    468 inline bool isAtomic(Opcode opcode)
     468inline bool isAtom(Opcode opcode)
    469469{
    470470    switch (opcode) {
     
    511511inline bool isMemoryAccess(Opcode opcode)
    512512{
    513     return isAtomic(opcode) || isLoadStore(opcode);
     513    return isAtom(opcode) || isLoadStore(opcode);
    514514}
    515515
Note: See TracChangeset for help on using the changeset viewer.