build: Don't force -flat_namespace or '-undefined suppress' on unsuspecting users...
[oota-llvm.git] / test / FrontendC / func-aligned.c
1 // RUN: %llvmgcc %s -S -o - | FileCheck %s
2
3 // rdar://7270273
4 void foo() __attribute__((aligned (64)));
5 void foo() {
6 // CHECK: define void @foo() {{.*}} align 64
7 }