Skip to content

Commit e22ead7

Browse files
committed
Fix SPDX-License-Identifier spelling
1 parent 54466d9 commit e22ead7

File tree

110 files changed

+208
-208
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+208
-208
lines changed

meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-license-identifier: Apache-2.0
1+
# SPDX-License-Identifier: Apache-2.0
22
# Copyright © 2021 Intel Corporation
33

44
project(

meson_options.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# SPDX-license-identifier: Apache-2.0
1+
# SPDX-License-Identifier: Apache-2.0
22
# Copyright © 2021 Intel Corporation
33

44
option(
55
'tests',
66
type : 'feature',
77
description : 'build unit tests',
8-
)
8+
)

src/backends/fir/fir.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
#pragma once
55

src/backends/fir/mir_to_fir.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
#include "fir.hpp"
55

src/backends/meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-license-identifier: Apache-2.0
1+
# SPDX-License-Identifier: Apache-2.0
22
# Copyright © 2021-2022 Intel Corporation
33

44
lib_fir = static_library(

src/backends/ninja/entry.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
/**
55
* Main ninja backend entry point.

src/backends/ninja/ninja.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
/**
55
* Main ninja backend entry point.

src/frontend/driver.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
#include <fstream>
55
#include <iostream>

src/frontend/driver.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
#pragma once
55

src/frontend/lexer.l

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* SPDX-license-identifier: Apache-2.0 */
1+
/* SPDX-License-Identifier: Apache-2.0 */
22
/* Copyright © 2021 Intel Corporation */
33

44
%{

src/frontend/meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-license-identifier: Apache-2.0
1+
# SPDX-License-Identifier: Apache-2.0
22
# Copyright © 2021 Intel Corporation
33

44
prog_bison = find_program('bison', version : '>= 3.2')

src/frontend/node.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
#include <numeric>
55

src/frontend/node.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
#pragma once
55

src/frontend/node_visitors.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
#pragma once
55

src/frontend/parser.yy

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-license-identifier: Apache-2.0
1+
// SPDX-License-Identifier: Apache-2.0
22
// Copyright © 2021 Intel Corporation
33

44
%skeleton "lalr1.cc"

src/frontend/parser_test.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
#include <gtest/gtest.h>
55
#include <memory>

src/frontend/scanner.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
#pragma once
55

src/frontend/standalone.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
#include "driver.hpp"
55

src/frontend/subdir_visitor.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
#include <filesystem>
55

src/main.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Dylan Baker
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
/**
55
* Main Meson++ entrypoint

src/meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-license-identifier: Apache-2.0
1+
# SPDX-License-Identifier: Apache-2.0
22
# Copyright © 2021 Intel Corporation
33

44
subdir('util')

src/mir/ast_to_mir.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
#include <filesystem>
55

src/mir/ast_to_mir.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
#pragma once
55

src/mir/ast_to_mir_test.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
#include <gtest/gtest.h>
55
#include <sstream>

src/mir/lower.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
#include <unordered_map>
55

src/mir/lower.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
/**
55
* Provides the main lowering loop implementation

src/mir/meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-license-identifier: Apache-2.0
1+
# SPDX-License-Identifier: Apache-2.0
22
# Copyright © 2021 Dylan Baker
33

44
subdir('meson')

src/mir/meson/arguments.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2022 Dylan Baker
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2022-2024 Intel Corporation
33

44
#include "arguments.hpp"
55

src/mir/meson/arguments.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Dylan Baker
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
/* Abstractions for command line arguments.
55
*/

src/mir/meson/machines.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
#include <cassert>
55
#include <cstdint>

src/mir/meson/machines.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
#pragma once
55

src/mir/meson/meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-license-identifier: Apache-2.0
1+
# SPDX-License-Identifier: Apache-2.0
22
# Copyright © 2021 Dylan Baker
33

44
_meson_args = []

src/mir/meson/meson_tests.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

2-
// SPDX-license-identifier: Apache-2.0
3-
// Copyright © 2022 Intel Corporation
2+
// SPDX-License-Identifier: Apache-2.0
3+
// Copyright © 2022-2024 Intel Corporation
44

55
#include <gtest/gtest.h>
66

src/mir/meson/state/state.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021-2022 Dylan Baker
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
#include "state.hpp"
55

src/mir/meson/state/state.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Dylan Baker
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
#pragma once
55

src/mir/meson/toolchains/archiver.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
/* Interface for the static archiver, or static linker
55
*

src/mir/meson/toolchains/archivers/gnu.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
#include "toolchains/archiver.hpp"
55

src/mir/meson/toolchains/common.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
#include "common.hpp"
55
#include "exceptions.hpp"

src/mir/meson/toolchains/common.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
/* Common helpers for toolchains
55
*/

src/mir/meson/toolchains/compiler.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
/* Interface for the Compiler class.
55
*/

src/mir/meson/toolchains/compilers/cpp/clang.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
#include "toolchains/compilers/cpp/cpp.hpp"
55

src/mir/meson/toolchains/compilers/cpp/cpp.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
/**
55
* All C++ Compilers, the interfaces

src/mir/meson/toolchains/compilers/cpp/gnu.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
#include "toolchains/compilers/cpp/cpp.hpp"
55

src/mir/meson/toolchains/compilers/cpp/gnulike.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
#include "toolchains/compilers/cpp/cpp.hpp"
55

src/mir/meson/toolchains/detect_archivers.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
/**
55
* Compiler detection functions

src/mir/meson/toolchains/detect_archivers_test.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
3-
// Copyright © 2021 Dylan Baker
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
3+
// Copyright © 2021-2024 Intel Corporation
44

55
#include <gtest/gtest.h>
66

src/mir/meson/toolchains/detect_compilers.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
/**
55
* Compiler detection functions

src/mir/meson/toolchains/detect_compilers_test.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
3-
// Copyright © 2021 Dylan Baker
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
3+
// Copyright © 2021-2024 Intel Corporation
44

55
#include <gtest/gtest.h>
66

src/mir/meson/toolchains/detect_linkers.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
33

44
/**
55
* Linker detection functions

src/mir/meson/toolchains/detect_linkers_test.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// SPDX-license-identifier: Apache-2.0
2-
// Copyright © 2021 Intel Corporation
3-
// Copyright © 2021 Dylan Baker
1+
// SPDX-License-Identifier: Apache-2.0
2+
// Copyright © 2021-2024 Intel Corporation
3+
// Copyright © 2021-2024 Intel Corporation
44

55
#include <gtest/gtest.h>
66

0 commit comments

Comments
 (0)