mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
cf3b1a2910
Previous discussion: http://lists.cs.uiuc.edu/pipermail/llvmdev/2013-July/063909.html Differential Revision: http://llvm-reviews.chandlerc.com/D1191 llvm-svn: 190773
10 lines
190 B
LLVM
10 lines
190 B
LLVM
; RUN: echo > %t.ll
|
|
; RUN: llvm-link %t.ll %s -S -o - | FileCheck %s
|
|
|
|
@i = linkonce_odr global i32 1
|
|
|
|
; CHECK: define void @f() prefix i32* @i
|
|
define void @f() prefix i32* @i {
|
|
ret void
|
|
}
|