IR: Move MDLocation into place
[oota-llvm.git] / test / CodeGen / XCore / align.ll
1 ; RUN: llc < %s -march=xcore | FileCheck %s
2
3 ; CHECK: .align 4
4 ; CHECK-LABEL: f:
5 define void @f() nounwind {
6 entry:
7   ret void
8 }
9
10 ; CHECK: .align 2
11 ; CHECK-LABEL: g:
12 define void @g() nounwind optsize {
13 entry:
14   ret void
15 }