Changeset 106204 in webkit


Ignore:
Timestamp:
Jan 29, 2012 5:41:09 PM (12 years ago)
Author:
fpizlo@apple.com
Message:

Build fix for Mac non-x64 platforms.

  • tools/CodeProfiling.cpp:

(JSC):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r106198 r106204  
     12012-01-29  Filip Pizlo  <fpizlo@apple.com>
     2
     3        Build fix for Mac non-x64 platforms.
     4
     5        * tools/CodeProfiling.cpp:
     6        (JSC):
     7
    182012-01-28  Gavin Barraclough  <barraclough@apple.com>
    29
  • trunk/Source/JavaScriptCore/tools/CodeProfiling.cpp

    r106197 r106204  
    3737WTF::MetaAllocatorTracker* CodeProfiling::s_tracker = 0;
    3838
     39#if COMPILER(CLANG)
     40#pragma clang diagnostic push
     41#pragma clang diagnostic ignored "-Wmissing-noreturn"
     42#endif
     43
    3944// Helper function to start & stop the timer.
    4045// Presently we're using the wall-clock timer, since this seems to give the best results.
     
    5459#endif
    5560}
     61
     62#if COMPILER(CLANG)
     63#pragma clang diagnostic pop
     64#endif
    5665
    5766#if PLATFORM(MAC) && CPU(X86_64)
Note: See TracChangeset for help on using the changeset viewer.