view test/CodeGen/X86/pr14314.ll @ 52:c22698ecb2a9

modified CreateIdentifierInfo and create new function which was named 'CreateUniqueIdentifierInfo'.
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Wed, 15 Jan 2014 21:01:33 +0900 (2014-01-15)
parents 95c75e76d11b
children 803732b1fca8
line wrap: on
line source
; RUN: llc < %s -mtriple=i386-pc-linux -mcpu=corei7 | FileCheck %s

define i64 @atomicSub(i64* %a, i64 %b) nounwind {
entry:
  %0 = atomicrmw sub i64* %a, i64 %b seq_cst
  ret i64 %0
; CHECK: atomicSub
; CHECK: movl %eax, %ebx
; CHECK: subl {{%[a-z]+}}, %ebx
; CHECK: movl %edx, %ecx
; CHECK: sbbl {{%[a-z]+}}, %ecx
; CHECK: ret
}