This should always be signed chars, so use int8_t. This fixes a miscompile when
[llvm/stm8.git] / test / CodeGen / X86 / store-global-address.ll
blobc8d4cbceea3dad6ce8760ec3bae58749cb844996
1 ; RUN: llc < %s -march=x86 | grep movl | count 1
3 @dst = global i32 0             ; <i32*> [#uses=1]
4 @ptr = global i32* null         ; <i32**> [#uses=1]
6 define void @test() {
7         store i32* @dst, i32** @ptr
8         ret void