brintos

brintos / llvm-project-archived public Read only

0
0
Text · 742 B · 34e7daa Raw
26 lines · plain
1; We manually create these here if we're not linking against2; the CRT which would usually provide these.3 4target triple = "x86_64-pc-windows-msvc"5 6%IMAGE_TLS_DIRECTORY64 = type {7    i64,    ; StartAddressOfRawData8    i64,    ; EndAddressOfRawData9    i64,    ; AddressOfIndex10    i64,    ; AddressOfCallBacks11    i32,    ; SizeOfZeroFill12    i32     ; Characteristics13}14 15@_tls_start = global i8 zeroinitializer, section ".tls"16@_tls_end = global i8 zeroinitializer, section ".tls$ZZZ"17@_tls_index = global i64 018 19@_tls_used = global %IMAGE_TLS_DIRECTORY64 {20    i64 ptrtoint (ptr @_tls_start to i64),21    i64 ptrtoint (ptr @_tls_end to i64),22    i64 ptrtoint (ptr @_tls_index to i64),23    i64 0,24    i32 0,25    i32 026}, section ".rdata$T"