about summary refs log tree commit diff
path: root/src/librustc_codegen_llvm/debuginfo
diff options
context:
space:
mode:
authorkenta7777 <k.hasegw7@gmail.com>2018-09-11 22:18:49 +0900
committerkenta7777 <k.hasegw7@gmail.com>2018-09-11 22:18:49 +0900
commit10b2083a6d3de2dad2a41639bfe5a90c4d87bf31 (patch)
tree67fb119f88e98ba26d6862484b15fdf3e06c3d3c /src/librustc_codegen_llvm/debuginfo
parentd7ebc20e7783133310a65a1555465292fd5cd84e (diff)
downloadrust-10b2083a6d3de2dad2a41639bfe5a90c4d87bf31.tar.gz
rust-10b2083a6d3de2dad2a41639bfe5a90c4d87bf31.zip
Revert "renamed is_nil to is_unit"
This reverts commit 6f685ffad42a2d12dd1fad5ccb0471e7fa260826.
Diffstat (limited to 'src/librustc_codegen_llvm/debuginfo')
-rw-r--r--src/librustc_codegen_llvm/debuginfo/type_names.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_codegen_llvm/debuginfo/type_names.rs b/src/librustc_codegen_llvm/debuginfo/type_names.rs
index f9eb80a1988..95a094bf909 100644
--- a/src/librustc_codegen_llvm/debuginfo/type_names.rs
+++ b/src/librustc_codegen_llvm/debuginfo/type_names.rs
@@ -160,7 +160,7 @@ pub fn push_debuginfo_type_name<'a, 'tcx>(cx: &CodegenCx<'a, 'tcx>,
 
             output.push(')');
 
-            if !sig.output().is_unit() {
+            if !sig.output().is_nil() {
                 output.push_str(" -> ");
                 push_debuginfo_type_name(cx, sig.output(), true, output);
             }