blob: 64b72932d0d285f49e1fd6a265795eb885c8a524 [file] [log] [blame]
Nuno Lopes060ddb02012-05-09 21:21:49 +00001// RUN: %clang_cc1 -triple x86_64-apple-darwin %s -emit-llvm -o - | FileCheck %s
Eric Christopher3883e662011-07-26 22:17:02 +00002
3// rdar://7270273
4void foo() __attribute__((aligned (64)));
5void foo() {
6// CHECK: define void @foo() {{.*}} align 64
7}