Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Check c++ formatting
uses: jidicula/clang-format-action@v4.11.0
uses: jidicula/clang-format-action@v4.14.0
with:
clang-format-version: '18'
clang-format-version: '19'
check-path: 'src'
check-bazel-formatting:
name: Bazel Formatting Check
Expand Down
2 changes: 1 addition & 1 deletion gematria/basic_block/basic_block.h
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ std::ostream& operator<<(std::ostream& os, const InstructionOperand& operand);
// Represents an annotation holding a value such as some measure/statistic
// paired with the instruction.
struct Annotation {
Annotation() : value(-1){};
Annotation() : value(-1) {};

// Initializes all fields of the annotation.
Annotation(std::string name, double value);
Expand Down
2 changes: 1 addition & 1 deletion gematria/datasets/exegesis_benchmark_lib_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class ExegesisBenchmarkTest : public testing::Test {
std::unique_ptr<ExegesisBenchmark> Benchmark;

protected:
ExegesisBenchmarkTest() : Benchmark(cantFail(ExegesisBenchmark::create())){};
ExegesisBenchmarkTest() : Benchmark(cantFail(ExegesisBenchmark::create())) {};

static void SetUpTestSuite() {
// LLVM Setup
Expand Down
2 changes: 1 addition & 1 deletion gematria/datasets/process_and_filter_bbs_lib_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class ProcessFilterBBsTest : public testing::Test {
: LLVMArchSupport(LlvmArchitectureSupport::X86_64()),
LLVMInstPrinter(LLVMArchSupport->CreateMCInstPrinter(
InlineAsm::AsmDialect::AD_ATT)),
BBProcessor(){};
BBProcessor() {};

std::vector<DisassembledInstruction> removeRiskyInstructions(
std::string_view TextualAssembly, bool FilterMemoryAccessingBlocks) {
Expand Down