summaryrefslogtreecommitdiff
path: root/test/FrontendC/func-aligned.c
blob: 40149f49d8ecdf3d8d497f45a61f05e8b9cd8f39 (plain)
1
2
3
4
5
6
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
}