summaryrefslogtreecommitdiff
path: root/test/FrontendC/func-aligned.c
blob: 477e82418aef4bf9e2f832b4573ec7c0c431de71 (plain)
1
2
3
4
5
6
7
// RUN: %llvmgcc %s -S -o - | FileCheck %s

// rdar://7270273
void foo() __attribute__((aligned (64)));
void foo() {
// CHECK: define void @foo() {{.*}} align 64
}