diff options
author | Ian Romanick <[email protected]> | 2017-07-26 13:32:01 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2018-03-29 14:09:30 -0700 |
commit | 4925347ec5d469574f1280e972940cfea345ed6e (patch) | |
tree | 15a22a37ff451cde08b2493c98cf484a53009b66 /src/util/bitset.h | |
parent | ef7a4c90155cb180a4f0d289594ef11da9a2b21a (diff) |
util: Include bitscan.h directly
Previously bitset.h would include u_math.h to get bitscan.h. u_math.h
lives in src/gallium/auxiliary/util while both bitset.h and bitscan.h
live in src/util. Having the one file directly include another file
that lives in the same directory makes much more sense.
As a side-effect, several files need to directly include standard header
files that were previously indirectly included.
v2: Fix build break in src/amd/common/ac_nir_to_llvm.c.
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Eduardo Lima Mitev <[email protected]>
Diffstat (limited to 'src/util/bitset.h')
-rw-r--r-- | src/util/bitset.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/bitset.h b/src/util/bitset.h index b4c21520238..75e29a9a519 100644 --- a/src/util/bitset.h +++ b/src/util/bitset.h @@ -31,7 +31,7 @@ #ifndef BITSET_H #define BITSET_H -#include "util/u_math.h" +#include "util/bitscan.h" /**************************************************************************** * generic bitset implementation |