llvm-6502/test/FrontendC/func-aligned.c

8 lines
175 B
C
Raw Normal View History

// RUN: %llvmgcc %s -S -emit-llvm -o - | FileCheck %s
// rdar://7270273
void foo() __attribute__((aligned (64)));
void foo() {
// CHECK: define void @foo() {{.*}} align 64
}