externally_available.ll 270 B

12345678910
  1. ; RUN: opt < %s -globaldce -S | not grep test_
  2. ; test_function should not be emitted to the .s file.
  3. define available_externally i32 @test_function() {
  4. ret i32 4
  5. }
  6. ; test_global should not be emitted to the .s file.
  7. @test_global = available_externally global i32 4