Skip to content

Commit e3fb05d

Browse files
committed
Rename some _sty variables to _kind
1 parent bea3d67 commit e3fb05d

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

src/librustc/ty/context.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -132,13 +132,13 @@ impl<'tcx> CtxtInterners<'tcx> {
132132
#[allow(rustc::usage_of_ty_tykind)]
133133
#[inline(never)]
134134
fn intern_ty(&self,
135-
st: TyKind<'tcx>
135+
kind: TyKind<'tcx>
136136
) -> Ty<'tcx> {
137-
self.type_.intern(st, |st| {
138-
let flags = super::flags::FlagComputation::for_sty(&st);
137+
self.type_.intern(kind, |kind| {
138+
let flags = super::flags::FlagComputation::for_kind(&kind);
139139

140140
let ty_struct = TyS {
141-
kind: st,
141+
kind,
142142
flags: flags.flags,
143143
outer_exclusive_binder: flags.outer_exclusive_binder,
144144
};

src/librustc/ty/flags.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ impl FlagComputation {
1919
}
2020

2121
#[allow(rustc::usage_of_ty_tykind)]
22-
pub fn for_sty(st: &ty::TyKind<'_>) -> FlagComputation {
22+
pub fn for_kind(kind: &ty::TyKind<'_>) -> FlagComputation {
2323
let mut result = FlagComputation::new();
24-
result.add_sty(st);
24+
result.add_kind(kind);
2525
result
2626
}
2727

@@ -63,8 +63,8 @@ impl FlagComputation {
6363
}
6464

6565
#[allow(rustc::usage_of_ty_tykind)]
66-
fn add_sty(&mut self, st: &ty::TyKind<'_>) {
67-
match st {
66+
fn add_kind(&mut self, kind: &ty::TyKind<'_>) {
67+
match kind {
6868
&ty::Bool |
6969
&ty::Char |
7070
&ty::Int(_) |

src/librustc_codegen_llvm/builder.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -324,15 +324,15 @@ impl BuilderMethods<'a, 'tcx> for Builder<'a, 'll, 'tcx> {
324324
use syntax::ast::UintTy::*;
325325
use rustc::ty::{Int, Uint};
326326

327-
let new_sty = match ty.kind {
327+
let new_kind = match ty.kind {
328328
Int(Isize) => Int(self.tcx.sess.target.isize_ty),
329329
Uint(Usize) => Uint(self.tcx.sess.target.usize_ty),
330330
ref t @ Uint(_) | ref t @ Int(_) => t.clone(),
331331
_ => panic!("tried to get overflow intrinsic for op applied to non-int type")
332332
};
333333

334334
let name = match oop {
335-
OverflowOp::Add => match new_sty {
335+
OverflowOp::Add => match new_kind {
336336
Int(I8) => "llvm.sadd.with.overflow.i8",
337337
Int(I16) => "llvm.sadd.with.overflow.i16",
338338
Int(I32) => "llvm.sadd.with.overflow.i32",
@@ -347,7 +347,7 @@ impl BuilderMethods<'a, 'tcx> for Builder<'a, 'll, 'tcx> {
347347

348348
_ => unreachable!(),
349349
},
350-
OverflowOp::Sub => match new_sty {
350+
OverflowOp::Sub => match new_kind {
351351
Int(I8) => "llvm.ssub.with.overflow.i8",
352352
Int(I16) => "llvm.ssub.with.overflow.i16",
353353
Int(I32) => "llvm.ssub.with.overflow.i32",
@@ -362,7 +362,7 @@ impl BuilderMethods<'a, 'tcx> for Builder<'a, 'll, 'tcx> {
362362

363363
_ => unreachable!(),
364364
},
365-
OverflowOp::Mul => match new_sty {
365+
OverflowOp::Mul => match new_kind {
366366
Int(I8) => "llvm.smul.with.overflow.i8",
367367
Int(I16) => "llvm.smul.with.overflow.i16",
368368
Int(I32) => "llvm.smul.with.overflow.i32",

src/librustdoc/clean/mod.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1098,7 +1098,7 @@ fn external_generic_args(
10981098
substs: SubstsRef<'_>,
10991099
) -> GenericArgs {
11001100
let mut skip_self = has_self;
1101-
let mut ty_sty = None;
1101+
let mut ty_kind = None;
11021102
let args: Vec<_> = substs.iter().filter_map(|kind| match kind.unpack() {
11031103
GenericArgKind::Lifetime(lt) => {
11041104
lt.clean(cx).and_then(|lt| Some(GenericArg::Lifetime(lt)))
@@ -1108,7 +1108,7 @@ fn external_generic_args(
11081108
None
11091109
}
11101110
GenericArgKind::Type(ty) => {
1111-
ty_sty = Some(&ty.kind);
1111+
ty_kind = Some(&ty.kind);
11121112
Some(GenericArg::Type(ty.clean(cx)))
11131113
}
11141114
GenericArgKind::Const(ct) => Some(GenericArg::Const(ct.clean(cx))),
@@ -1117,8 +1117,8 @@ fn external_generic_args(
11171117
match trait_did {
11181118
// Attempt to sugar an external path like Fn<(A, B,), C> to Fn(A, B) -> C
11191119
Some(did) if cx.tcx.lang_items().fn_trait_kind(did).is_some() => {
1120-
assert!(ty_sty.is_some());
1121-
let inputs = match ty_sty {
1120+
assert!(ty_kind.is_some());
1121+
let inputs = match ty_kind {
11221122
Some(ty::Tuple(ref tys)) => tys.iter().map(|t| t.expect_ty().clean(cx)).collect(),
11231123
_ => return GenericArgs::AngleBracketed { args, bindings },
11241124
};

0 commit comments

Comments
 (0)