[ARM] Adjust how NEON shifts are lowered
[llvm-core.git] / test / CodeGen / X86 / compare-global.ll
blob747595c1a89c3f4443889260c1605f516a9849df
1 ; RUN: llc -o - %s | FileCheck %s
3 target datalayout = "e-m:x-p:32:32-i64:64-f80:32-n8:16:32-a:0:32-S32"
4 target triple = "i686-pc-windows-msvc18.0.0"
6 @foo = external global i8
8 define void @f(i8* %c) {
9 entry:
10   ; CHECK: cmpl $_foo, 4(%esp)
11   %cmp = icmp eq i8* %c, @foo
12   br i1 %cmp, label %if.then, label %if.end
14 if.then:
15   tail call void @g()
16   br label %if.end
18 if.end:
19   ret void
22 declare void @g()