xref: /llvm-project/llvm/test/CodeGen/X86/2007-04-27-InlineAsm-IntMemInput.ll (revision 0aef747b846586c29ed3285bbed20a3d607576fa)
1; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2; RUN: llc < %s | FileCheck %s
3; PR1356
4
5target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64"
6target triple = "i686-apple-darwin8"
7
8define i32 @main() {
9; CHECK-LABEL: main:
10; CHECK:       ## %bb.0: ## %entry
11; CHECK-NEXT:    ## InlineAsm Start
12; CHECK-NEXT:    bsrl {{\.?LCPI[0-9]+_[0-9]+}}, %eax
13; CHECK-NEXT:    ## InlineAsm End
14; CHECK-NEXT:    retl
15entry:
16        %tmp4 = tail call i32 asm "bsrl  $1, $0", "=r,ro,~{dirflag},~{fpsr},~{flags},~{cc}"( i32 10 )           ; <i32> [#uses=1]
17        ret i32 %tmp4
18}
19
20