diff options
author | Jason Ekstrand <[email protected]> | 2016-03-25 10:08:50 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2016-03-28 18:32:48 -0700 |
commit | 731870fbe31d00fd9d734c4a6ebdecb944181eb8 (patch) | |
tree | bacc17bcd258adeee655dc56cb65eb139e92f84a | |
parent | b4c0c514b10ed85b50e4fc3bbd9c740db21e5720 (diff) |
nir/Makefile: Fix alphabetization
Reviewed-by: Rob Clark <[email protected]>
-rw-r--r-- | src/compiler/Makefile.sources | 6 | ||||
-rw-r--r-- | src/compiler/nir/Makefile.sources | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/compiler/Makefile.sources b/src/compiler/Makefile.sources index 1f8517282ef..0aee2006902 100644 --- a/src/compiler/Makefile.sources +++ b/src/compiler/Makefile.sources @@ -178,10 +178,10 @@ NIR_FILES = \ nir/nir_from_ssa.c \ nir/nir_gs_count_vertices.c \ nir/nir_inline_functions.c \ - nir/nir_intrinsics.c \ - nir/nir_intrinsics.h \ nir/nir_instr_set.c \ nir/nir_instr_set.h \ + nir/nir_intrinsics.c \ + nir/nir_intrinsics.h \ nir/nir_liveness.c \ nir/nir_lower_alu_to_scalar.c \ nir/nir_lower_atomics.c \ @@ -220,8 +220,8 @@ NIR_FILES = \ nir/nir_phi_builder.c \ nir/nir_phi_builder.h \ nir/nir_print.c \ - nir/nir_repair_ssa.c \ nir/nir_remove_dead_variables.c \ + nir/nir_repair_ssa.c \ nir/nir_search.c \ nir/nir_search.h \ nir/nir_split_var_copies.c \ diff --git a/src/compiler/nir/Makefile.sources b/src/compiler/nir/Makefile.sources index 00576f062c5..34743024551 100644 --- a/src/compiler/nir/Makefile.sources +++ b/src/compiler/nir/Makefile.sources @@ -21,10 +21,10 @@ NIR_FILES = \ nir_from_ssa.c \ nir_gs_count_vertices.c \ nir_inline_functions.c \ - nir_intrinsics.c \ - nir_intrinsics.h \ nir_instr_set.c \ nir_instr_set.h \ + nir_intrinsics.c \ + nir_intrinsics.h \ nir_liveness.c \ nir_lower_alu_to_scalar.c \ nir_lower_atomics.c \ @@ -63,8 +63,8 @@ NIR_FILES = \ nir_phi_builder.c \ nir_phi_builder.h \ nir_print.c \ - nir_repair_ssa.c \ nir_remove_dead_variables.c \ + nir_repair_ssa.c \ nir_search.c \ nir_search.h \ nir_split_var_copies.c \ |