@@ -215,7 +215,7 @@ impl BuilderMethods<'a, 'tcx> for Builder<'a, 'll, 'tcx> {
215
215
funclet : Option < & Funclet < ' ll > > ,
216
216
) -> & ' ll Value {
217
217
218
- debug ! ( "Invoke {:?} with args ({:?})" ,
218
+ debug ! ( "invoke {:?} with args ({:?})" ,
219
219
llfn,
220
220
args) ;
221
221
@@ -1035,7 +1035,7 @@ impl BuilderMethods<'a, 'tcx> for Builder<'a, 'll, 'tcx> {
1035
1035
funclet : Option < & Funclet < ' ll > > ,
1036
1036
) -> & ' ll Value {
1037
1037
1038
- debug ! ( "Call {:?} with args ({:?})" ,
1038
+ debug ! ( "call {:?} with args ({:?})" ,
1039
1039
llfn,
1040
1040
args) ;
1041
1041
@@ -1238,7 +1238,7 @@ impl Builder<'a, 'll, 'tcx> {
1238
1238
if dest_ptr_ty == stored_ptr_ty {
1239
1239
ptr
1240
1240
} else {
1241
- debug ! ( "Type mismatch in store. \
1241
+ debug ! ( "type mismatch in store. \
1242
1242
Expected {:?}, got {:?}; inserting bitcast",
1243
1243
dest_ptr_ty, stored_ptr_ty) ;
1244
1244
self . bitcast ( ptr, stored_ptr_ty)
@@ -1274,7 +1274,7 @@ impl Builder<'a, 'll, 'tcx> {
1274
1274
. map ( |( i, ( expected_ty, & actual_val) ) | {
1275
1275
let actual_ty = self . val_ty ( actual_val) ;
1276
1276
if expected_ty != actual_ty {
1277
- debug ! ( "Type mismatch in function call of {:?}. \
1277
+ debug ! ( "type mismatch in function call of {:?}. \
1278
1278
Expected {:?} for param {}, got {:?}; injecting bitcast",
1279
1279
llfn, expected_ty, i, actual_ty) ;
1280
1280
self . bitcast ( actual_val, expected_ty)
0 commit comments