about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorMarco Concetto Rudilosso <marcoconcettorudilosso@gmail.com>2017-10-18 17:28:31 +0100
committerMarco Concetto Rudilosso <marcoconcettorudilosso@gmail.com>2017-10-21 22:50:21 +0100
commit20ae2d98c04621f70f166b84d64d617adeecb5d2 (patch)
treea4d3c23d779157c4d596fdee78f6d747e8652570 /src
parent73c95431ee98fde159a7e8e068cdd406bd8810d0 (diff)
downloadrust-20ae2d98c04621f70f166b84d64d617adeecb5d2.tar.gz
rust-20ae2d98c04621f70f166b84d64d617adeecb5d2.zip
moved depnode
Diffstat (limited to 'src')
-rw-r--r--src/librustc/dep_graph/dep_node.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/librustc/dep_graph/dep_node.rs b/src/librustc/dep_graph/dep_node.rs
index ebb8868642b..91c84e539cf 100644
--- a/src/librustc/dep_graph/dep_node.rs
+++ b/src/librustc/dep_graph/dep_node.rs
@@ -632,10 +632,9 @@ define_dep_nodes!( <'tcx>
     [] CodegenUnit(InternedString),
     [] CompileCodegenUnit(InternedString),
     [] OutputFilenames,
-
+    [] NormalizeTy,
     // We use this for most things when incr. comp. is turned off.
     [] Null,
-    [] NormalizeTy,
 );
 
 trait DepNodeParams<'a, 'gcx: 'tcx + 'a, 'tcx: 'a> : fmt::Debug {