[SimplifyLibCalls] Remove useless bits of this tests.
[oota-llvm.git] / test / Transforms / InstCombine / align-attr.ll
1 ; RUN: opt < %s -instcombine -S | FileCheck %s
2 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
3 target triple = "x86_64-unknown-linux-gnu"
4
5 ; Function Attrs: nounwind uwtable
6 define i32 @foo1(i32* align 32 %a) #0 {
7 entry:
8   %0 = load i32, i32* %a, align 4
9   ret i32 %0
10
11 ; CHECK-LABEL: @foo1
12 ; CHECK-DAG: load i32, i32* %a, align 32
13 ; CHECK: ret i32
14 }
15