Browse Source

Eliminate Wunknown-pragmas for Clang/LLVM (#265)

pull/268/head
Zenithal 4 years ago
committed by GitHub
parent
commit
74624f2cd2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      util/string.c

2
util/string.c

@ -4,7 +4,7 @@
#include <stdint.h>
#include <ctype.h>
#ifdef __GNUC__
#if defined(__GNUC__) && !defined(__llvm__)
// Don't let GCC pattern-match these functions' bodies into self-calls
#pragma GCC optimize ("no-tree-loop-distribute-patterns")
#endif

Loading…
Cancel
Save