From 657d21237d8053da7fb56ed0aff9d32220433f0b Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Wed, 13 Nov 2024 09:13:04 +0000 Subject: [PATCH] format --- toolchain/base/int_store.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/toolchain/base/int_store.h b/toolchain/base/int_store.h index 5ed396f1110f2..28e6d5e51758a 100644 --- a/toolchain/base/int_store.h +++ b/toolchain/base/int_store.h @@ -407,7 +407,9 @@ class IntStore { // Helper functions for handling values that are large enough to require an // allocated `APInt` for storage. Creating or manipulating that storage is - // only a few lines of code, but we move these out-of-line because the generated code is big and harms performance for the non-`Large` common case. + // only a few lines of code, but we move these out-of-line because the + // generated code is big and harms performance for the non-`Large` common + // case. auto AddLarge(int64_t value) -> IntId; auto AddSignedLarge(llvm::APInt value) -> IntId; auto AddUnsignedLarge(llvm::APInt value) -> IntId;