1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-25 14:02:52 +02:00
llvm-mirror/test/CodeGen/X86/visibility.ll
Rafael Espindola d93551f227 Add a triple.
llvm-svn: 124471
2011-01-28 03:57:55 +00:00

12 lines
194 B
LLVM

; RUN: llc -mtriple=x86_64-unknown-linux-gnu %s -o - | FileCheck %s
define hidden void @foo() nounwind {
entry:
call void @bar()
ret void
}
declare hidden void @bar()
;CHECK: .hidden bar