You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
307 B
17 lines
307 B
; Make sure @main is left untouched.
|
|
; RUN: opt -metarenamer -S %s | FileCheck %s
|
|
; RUN: opt -passes=metarenamer -S %s | FileCheck %s
|
|
|
|
; CHECK: define void @main
|
|
; CHECK: call void @main
|
|
|
|
define void @main() {
|
|
call void @patatino()
|
|
ret void
|
|
}
|
|
|
|
define void @patatino() {
|
|
call void @main()
|
|
ret void
|
|
}
|