@@ -2422,32 +2422,32 @@ IRConstant* IRBuilder::getClonedConstantValue(IRConstant& value)
2422
2422
case kIROp_IntLit :
2423
2423
{
2424
2424
const size_t instSize = prefixSize + sizeof (IRIntegerValue);
2425
- irValue = static_cast <IRConstant*>(
2426
- _createInst (instSize, value.getFullType (), value.getOp ()));
2425
+ irValue =
2426
+ static_cast <IRConstant*>( _createInst (instSize, value.getFullType (), value.getOp ()));
2427
2427
irValue->value .intVal = value.value .intVal ;
2428
2428
break ;
2429
2429
}
2430
2430
case kIROp_FloatLit :
2431
2431
{
2432
2432
const size_t instSize = prefixSize + sizeof (IRFloatingPointValue);
2433
- irValue = static_cast <IRConstant*>(
2434
- _createInst (instSize, value.getFullType (), value.getOp ()));
2433
+ irValue =
2434
+ static_cast <IRConstant*>( _createInst (instSize, value.getFullType (), value.getOp ()));
2435
2435
irValue->value .floatVal = value.value .floatVal ;
2436
2436
break ;
2437
2437
}
2438
2438
case kIROp_PtrLit :
2439
2439
{
2440
2440
const size_t instSize = prefixSize + sizeof (void *);
2441
- irValue = static_cast <IRConstant*>(
2442
- _createInst (instSize, value.getFullType (), value.getOp ()));
2441
+ irValue =
2442
+ static_cast <IRConstant*>( _createInst (instSize, value.getFullType (), value.getOp ()));
2443
2443
irValue->value .ptrVal = value.value .ptrVal ;
2444
2444
break ;
2445
2445
}
2446
2446
case kIROp_VoidLit :
2447
2447
{
2448
2448
const size_t instSize = prefixSize + sizeof (void *);
2449
- irValue = static_cast <IRConstant*>(
2450
- _createInst (instSize, value.getFullType (), value.getOp ()));
2449
+ irValue =
2450
+ static_cast <IRConstant*>( _createInst (instSize, value.getFullType (), value.getOp ()));
2451
2451
irValue->value .ptrVal = value.value .ptrVal ;
2452
2452
break ;
2453
2453
}
@@ -2460,8 +2460,8 @@ IRConstant* IRBuilder::getClonedConstantValue(IRConstant& value)
2460
2460
const size_t instSize =
2461
2461
prefixSize + offsetof (IRConstant::StringValue, chars) + sliceSize;
2462
2462
2463
- irValue = static_cast <IRConstant*>(
2464
- _createInst (instSize, value.getFullType (), value.getOp ()));
2463
+ irValue =
2464
+ static_cast <IRConstant*>( _createInst (instSize, value.getFullType (), value.getOp ()));
2465
2465
2466
2466
IRConstant::StringValue& dstString = irValue->value .stringVal ;
2467
2467
0 commit comments