convert to filecheck.
[oota-llvm.git] / test / FrontendC / func-aligned.c
1 // RUN: %llvmgcc %s -S -emit-llvm -o - | FileCheck %s
2
3 // rdar://7270273
4 void foo() __attribute__((aligned (64)));
5 void foo() {
6 // CHECK: define void @foo() {{.*}} align 64
7 }