Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
chandlerc committed Nov 13, 2024
1 parent ddf3fa1 commit 657d212
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion toolchain/base/int_store.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 657d212

Please sign in to comment.