From ac7abbbe3fa2eea01defb670abc7dc1dc336cf21 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Tue, 25 Aug 2026 13:57:38 +0900 Subject: internal/rosa: read-only access to built-ins This removes potential footguns caused by mutable builtins without requiring unnecessary clones. Signed-off-by: Ophestra --- internal/rosa/llvm_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/rosa/llvm_test.go') diff --git a/internal/rosa/llvm_test.go b/internal/rosa/llvm_test.go index 2b1d2e7d..42b0b540 100644 --- a/internal/rosa/llvm_test.go +++ b/internal/rosa/llvm_test.go @@ -10,7 +10,7 @@ import ( func TestLLVMInputs(t *testing.T) { const wantInputCount = 470 - _, llvm := rosa.Native().Std().MustLoad(rosa.H("llvm")) + _, llvm := rosa.MustLoad(rosa.H("llvm")) var n int for range pkg.Inputs(llvm) { n++ -- cgit v1.3.1