[ARM] Adjust how NEON shifts are lowered
[llvm-core.git] / test / CodeGen / X86 / remat-constant.ll
blob5a6826f3809035ef6c3539e58caceb35a5f6c857
1 ; RUN: llc < %s -mtriple=x86_64-linux -relocation-model=static | grep xmm | count 2
3 declare void @bar() nounwind
5 @a = external constant float
7 declare void @qux(float %f) nounwind 
9 define void @foo() nounwind  {
10   %f = load float, float* @a
11   call void @bar()
12   call void @qux(float %f)
13   call void @qux(float %f)
14   ret void