huangcm
2025-02-24 69ed55dec4b2116a19e4cca4393cbc014fce5fb2
1
2
3
4
5
6
7
8
9
10
11
; RUN: opt < %s -globaldce -S | FileCheck %s
 
; test_function should not be emitted to the .s file.
; CHECK-NOT: test_function
define available_externally i32 @test_function() {
  ret i32 4
}
 
; test_global should not be emitted to the .s file.
; CHECK-NOT: test_global
@test_global = available_externally global i32 4