summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/2008-08-19-SubAndFetch.ll
blob: 360ec73bc4364a762aa55c9db55416c14b2c3e04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; RUN: llc < %s -march=x86-64 | FileCheck %s

@var = external global i64		; <i64*> [#uses=1]

define i32 @main() nounwind {
entry:
; CHECK: main:
; CHECK: lock
; CHECK: decq
	atomicrmw sub i64* @var, i64 1 monotonic
	unreachable
}