Skip to content

Commit 9b43437

Browse files
committed
format
1 parent c34e1f9 commit 9b43437

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

llvm/lib/Bitcode/Writer/BitcodeWriter.cpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3971,9 +3971,9 @@ void ModuleBitcodeWriter::writeBlockInfo() {
39713971
{
39723972
auto Abbv = std::make_shared<BitCodeAbbrev>();
39733973
Abbv->Add(BitCodeAbbrevOp(bitc::FUNC_CODE_INST_STORE));
3974-
Abbv->Add(ValAbbrevOp); // op1
3975-
Abbv->Add(ValAbbrevOp); // op0
3976-
Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 4)); // align
3974+
Abbv->Add(ValAbbrevOp); // op1
3975+
Abbv->Add(ValAbbrevOp); // op0
3976+
Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 4)); // align
39773977
Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // volatile
39783978
if (Stream.EmitBlockInfoAbbrev(bitc::FUNCTION_BLOCK_ID, Abbv) !=
39793979
FUNCTION_INST_STORE_ABBREV)
@@ -4097,8 +4097,8 @@ void ModuleBitcodeWriter::writeBlockInfo() {
40974097
{
40984098
auto Abbv = std::make_shared<BitCodeAbbrev>();
40994099
Abbv->Add(BitCodeAbbrevOp(bitc::FUNC_CODE_INST_CMP2));
4100-
Abbv->Add(ValAbbrevOp); // op0
4101-
Abbv->Add(ValAbbrevOp); // op1
4100+
Abbv->Add(ValAbbrevOp); // op0
4101+
Abbv->Add(ValAbbrevOp); // op1
41024102
Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 6)); // pred
41034103
if (Stream.EmitBlockInfoAbbrev(bitc::FUNCTION_BLOCK_ID, Abbv) !=
41044104
FUNCTION_INST_CMP_ABBREV)
@@ -4107,8 +4107,8 @@ void ModuleBitcodeWriter::writeBlockInfo() {
41074107
{
41084108
auto Abbv = std::make_shared<BitCodeAbbrev>();
41094109
Abbv->Add(BitCodeAbbrevOp(bitc::FUNC_CODE_INST_CMP2));
4110-
Abbv->Add(ValAbbrevOp); // op0
4111-
Abbv->Add(ValAbbrevOp); // op1
4110+
Abbv->Add(ValAbbrevOp); // op0
4111+
Abbv->Add(ValAbbrevOp); // op1
41124112
Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 6)); // pred
41134113
Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 8)); // flags
41144114
if (Stream.EmitBlockInfoAbbrev(bitc::FUNCTION_BLOCK_ID, Abbv) !=

0 commit comments

Comments
 (0)