[clang] Document the return value of __builtin_COLUMN (#118360)
[llvm-project.git] / llvm / test / Transforms / InstCombine / align-attr.ll
blobe7b17e72a81712a433ecb5dc1a283bcf5a83c6f7
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt < %s -passes=instcombine -S | FileCheck %s
3 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
4 target triple = "x86_64-unknown-linux-gnu"
6 ; Function Attrs: nounwind uwtable
7 define i32 @foo1(ptr align 32 %a) #0 {
8 ; CHECK-LABEL: @foo1(
9 ; CHECK-NEXT:  entry:
10 ; CHECK-NEXT:    [[TMP0:%.*]] = load i32, ptr [[A:%.*]], align 4
11 ; CHECK-NEXT:    ret i32 [[TMP0]]
13 entry:
14   %0 = load i32, ptr %a, align 4
15   ret i32 %0
19 define i32 @foo2(ptr align 32 %a) #0 {
20 ; CHECK-LABEL: @foo2(
21 ; CHECK-NEXT:  entry:
22 ; CHECK-NEXT:    [[V:%.*]] = call ptr @func1(ptr [[A:%.*]])
23 ; CHECK-NEXT:    [[TMP0:%.*]] = load i32, ptr [[A]], align 4
24 ; CHECK-NEXT:    ret i32 [[TMP0]]
26 entry:
27   %v = call ptr @func1(ptr %a)
28   %0 = load i32, ptr %v, align 4
29   ret i32 %0
33 declare ptr @func1(ptr returned) nounwind