Skip to content

Commit ef3358b

Browse files
committed
Fix tidy
1 parent 018747b commit ef3358b

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

src/librustc_codegen_llvm/builder.rs

+6-1
Original file line numberDiff line numberDiff line change
@@ -1309,7 +1309,12 @@ impl Builder<'a, 'll, 'tcx> {
13091309
}
13101310
}
13111311

1312-
pub fn shuffle_vector(&mut self, v1: &'ll Value, v2: &'ll Value, mask: &'ll Value) -> &'ll Value {
1312+
pub fn shuffle_vector(
1313+
&mut self,
1314+
v1: &'ll Value,
1315+
v2: &'ll Value,
1316+
mask: &'ll Value,
1317+
) -> &'ll Value {
13131318
self.count_insn("shufflevector");
13141319
unsafe {
13151320
llvm::LLVMBuildShuffleVector(self.llbuilder, v1, v2, mask, noname())

src/librustc_codegen_ssa/mir/operand.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,9 @@ impl<'a, 'tcx: 'a, V: CodegenObject> OperandValue<V> {
277277
self.store_with_flags(bx, dest, MemFlags::VOLATILE);
278278
}
279279

280-
pub fn unaligned_volatile_store<Bx: MemoryBuilderMethods<'tcx, Value = V> + NumBuilderMethods<'tcx>>(
280+
pub fn unaligned_volatile_store<
281+
Bx: MemoryBuilderMethods<'tcx, Value = V> + NumBuilderMethods<'tcx>
282+
>(
281283
self,
282284
bx: &mut Bx,
283285
dest: PlaceRef<'tcx, V>,

0 commit comments

Comments
 (0)