mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-06 21:05:51 +00:00
11 lines
233 B
LLVM
11 lines
233 B
LLVM
|
; RUN: llc < %s -mtriple x86_64-apple-darwin | FileCheck %s
|
||
|
; PR17964
|
||
|
|
||
|
; CHECK: __DATA,__thread_data,thread_local_regular
|
||
|
; CHECK: _foo$tlv$init
|
||
|
@foo = weak_odr thread_local global i8 1, align 4
|
||
|
|
||
|
define i32 @main() {
|
||
|
ret i32 0
|
||
|
}
|