Test case for aligned attribute on function declaration.

llvm-svn: 83234
This commit is contained in:
Evan Cheng 2009-10-02 04:45:37 +00:00
parent cb4a66977c
commit 1532dec48b

View File

@ -0,0 +1,7 @@
// RUN: %llvmgcc %s -S -emit-llvm -o - | FileCheck %s
// rdar://7270273
void foo() __attribute__((aligned (64)));
void foo() {
// CHECK: define void @foo() {{.*}} align 64
}