blob: f8a4a29d9d2cd111af450921fb8bbbb381fbb67e [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
2
3// rdar://7270273
4void foo() __attribute__((aligned (64)));
5void foo() {
6// CHECK: define void @foo() {{.*}} align 64
7}