1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -triple x86_64-apple-darwin %s -emit-llvm -o - | FileCheck %s 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuc // rdar://7270273 4*f4a2713aSLionel Sambuc void foo() __attribute__((aligned (64))); foo()5*f4a2713aSLionel Sambucvoid foo() { 6*f4a2713aSLionel Sambuc // CHECK: define void @foo() {{.*}} align 64 7*f4a2713aSLionel Sambuc } 8