diff options
author | Ayke van Laethem <[email protected]> | 2023-01-17 15:08:55 +0100 |
---|---|---|
committer | Ayke <[email protected]> | 2023-01-17 23:35:53 +0100 |
commit | 159317a5fef2d48657e31aee6befb174a4072002 (patch) | |
tree | d383c645d29a7cc15b4350f9be424a5fb3e36dfb /builder | |
parent | 655075e5e0e09ae3d9a3247d04343c020d87162e (diff) | |
download | tinygo-159317a5fef2d48657e31aee6befb174a4072002.tar.gz tinygo-159317a5fef2d48657e31aee6befb174a4072002.zip |
all: remove remaining +build lines
Diffstat (limited to 'builder')
-rw-r--r-- | builder/cc1as.cpp | 2 | ||||
-rw-r--r-- | builder/clang.cpp | 2 | ||||
-rw-r--r-- | builder/lld.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/builder/cc1as.cpp b/builder/cc1as.cpp index cd3229adb..6c31a1c56 100644 --- a/builder/cc1as.cpp +++ b/builder/cc1as.cpp @@ -1,4 +1,4 @@ -// +build byollvm +//go:build byollvm //===-- cc1as.cpp - Clang Assembler --------------------------------------===// // diff --git a/builder/clang.cpp b/builder/clang.cpp index 27c260fd6..e51d69338 100644 --- a/builder/clang.cpp +++ b/builder/clang.cpp @@ -1,4 +1,4 @@ -// +build byollvm +//go:build byollvm #include <clang/Basic/DiagnosticOptions.h> #include <clang/CodeGen/CodeGenAction.h> diff --git a/builder/lld.cpp b/builder/lld.cpp index a03944c58..c7688f0c2 100644 --- a/builder/lld.cpp +++ b/builder/lld.cpp @@ -1,4 +1,4 @@ -// +build byollvm +//go:build byollvm // This file provides C wrappers for liblld. |