Marge Bot pushed to branch master at Glasgow Haskell Compiler / GHC

Commits:

1 changed file:

Changes:

  • rts/Hash.c
    ... ... @@ -14,18 +14,6 @@
    14 14
     #include "Hash.h"
    
    15 15
     #include "RtsUtils.h"
    
    16 16
     
    
    17
    -/* This file needs to be compiled with vectorization enabled.  Unfortunately
    
    18
    -   since we compile these things these days with cabal we can no longer
    
    19
    -   specify optimization per file.  So we have to resort to pragmas.  */
    
    20
    -#if defined(__GNUC__) || defined(__GNUG__)
    
    21
    -#if !defined(__clang__)
    
    22
    -#if !defined(DEBUG)
    
    23
    -#pragma GCC push_options
    
    24
    -#pragma GCC optimize ("O3")
    
    25
    -#endif
    
    26
    -#endif
    
    27
    -#endif
    
    28
    -
    
    29 17
     #define XXH_INLINE_ALL
    
    30 18
     
    
    31 19
     #include "xxhash.h"
    
    ... ... @@ -570,12 +558,3 @@ int keyCountHashTable (HashTable *table)
    570 558
     {
    
    571 559
         return table->kcount;
    
    572 560
     }
    573
    -
    
    574
    -
    
    575
    -#if defined(__GNUC__) || defined(__GNUG__)
    
    576
    -#if !defined(__clang__)
    
    577
    -#if !defined(DEBUG)
    
    578
    -#pragma GCC pop_options
    
    579
    -#endif
    
    580
    -#endif
    
    581
    -#endif