mirror of
https://github.com/jeremysrand/llvm-65816.git
synced 2025-02-19 08:30:29 +00:00
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
|
|
}
|