Reapply r121905 (automatic synthesis of @llvm.sadd.with.overflow) with a fix for...
[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 }