LLVM instruction syntax doesn't have trailing semicolons.
[oota-llvm.git] / test / Transforms / InstCombine / align-inc.ll
1 ; RUN: opt < %s -instcombine -S | grep {GLOBAL.*align 16}
2 ; RUN: opt < %s -instcombine -S | grep {tmp = load}
3 target datalayout = "E-p:64:64:64-a0:0:8-f32:32:32-f64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-v64:64:64-v128:128:128"
4
5 @GLOBAL = internal global [4 x i32] zeroinitializer
6
7 define <16 x i8> @foo(<2 x i64> %x) {
8 entry:
9         %tmp = load <16 x i8>* bitcast ([4 x i32]* @GLOBAL to <16 x i8>*), align 1
10         ret <16 x i8> %tmp
11 }
12