[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / MC / X86 / inline-asm-obj.ll
blob2ee998dbc45df1662fbe45c8bdb0f41d308a1ebc
1 ; RUN: llc %s -o - | llvm-mc -triple=x86_64-pc-linux -o %t1 -filetype=obj
2 ; RUN: llc %s -o %t2 -filetype=obj
3 ; RUN: cmp %t1 %t2
5 ; Test that we can handle inline assembly referring to a temporary label.
6 ; We crashed when using direct object emission in the past.
8 target triple = "x86_64-unknown-linux-gnu"
10 define void @fj()  {
11   call void asm "bsr $0,%eax", "o"(i32 1)
12   ret void