64ac736ec5
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
16 lines
255 B
LLVM
16 lines
255 B
LLVM
; Make sure @main is left untouched.
|
|
; RUN: opt -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
|
|
}
|