Home | History | Annotate | Download | only in ARM
      1 ; RUN: llc -mtriple=arm-eabi %s -o - | FileCheck %s
      2 
      3 define void @f1() {
      4 entry:
      5         store i8 0, i8* null
      6         ret void
      7 }
      8 
      9 ; CHECK: strb
     10 
     11 define void @f2() {
     12 entry:
     13         store i16 0, i16* null
     14         ret void
     15 }
     16 
     17 ; CHECK: strh
     18 
     19