2016-05-02 06:51:14 +08:00
|
|
|
; RUN: opt < %s -globaldce -S | FileCheck %s
|
2009-04-13 13:44:34 +08:00
|
|
|
|
|
|
|
; test_function should not be emitted to the .s file.
|
2016-05-02 06:51:14 +08:00
|
|
|
; CHECK-NOT: test_function
|
2009-04-13 13:44:34 +08:00
|
|
|
define available_externally i32 @test_function() {
|
|
|
|
ret i32 4
|
|
|
|
}
|
|
|
|
|
|
|
|
; test_global should not be emitted to the .s file.
|
2016-05-02 06:51:14 +08:00
|
|
|
; CHECK-NOT: test_global
|
2009-04-13 13:44:34 +08:00
|
|
|
@test_global = available_externally global i32 4
|
|
|
|
|