Remove simple regalloc. It has bit rotted.
[llvm/avr.git] / test / CodeGen / Blackfin / sync-intr.ll
blob75084f01e560797fb145545c68ca343cd1fb9e4f
1 ; RUN: llc < %s -march=bfin -verify-machineinstrs | FileCheck %s
3 define void @f() nounwind {
4 entry:
5         ; CHECK: csync;
6         call void @llvm.bfin.csync()
7         ; CHECK: ssync;
8         call void @llvm.bfin.ssync()
9         ret void
12 declare void @llvm.bfin.csync() nounwind
13 declare void @llvm.bfin.ssync() nounwind