Skip to content

Commit 191e795

Browse files
committed
Fix formatting
1 parent d78ea4b commit 191e795

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

source/slang/slang-ir.cpp

+10-10
Original file line numberDiff line numberDiff line change
@@ -2422,32 +2422,32 @@ IRConstant* IRBuilder::getClonedConstantValue(IRConstant& value)
24222422
case kIROp_IntLit:
24232423
{
24242424
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()));
24272427
irValue->value.intVal = value.value.intVal;
24282428
break;
24292429
}
24302430
case kIROp_FloatLit:
24312431
{
24322432
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()));
24352435
irValue->value.floatVal = value.value.floatVal;
24362436
break;
24372437
}
24382438
case kIROp_PtrLit:
24392439
{
24402440
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()));
24432443
irValue->value.ptrVal = value.value.ptrVal;
24442444
break;
24452445
}
24462446
case kIROp_VoidLit:
24472447
{
24482448
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()));
24512451
irValue->value.ptrVal = value.value.ptrVal;
24522452
break;
24532453
}
@@ -2460,8 +2460,8 @@ IRConstant* IRBuilder::getClonedConstantValue(IRConstant& value)
24602460
const size_t instSize =
24612461
prefixSize + offsetof(IRConstant::StringValue, chars) + sliceSize;
24622462

2463-
irValue = static_cast<IRConstant*>(
2464-
_createInst(instSize, value.getFullType(), value.getOp()));
2463+
irValue =
2464+
static_cast<IRConstant*>(_createInst(instSize, value.getFullType(), value.getOp()));
24652465

24662466
IRConstant::StringValue& dstString = irValue->value.stringVal;
24672467

0 commit comments

Comments
 (0)