mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
7 lines
175 B
C
7 lines
175 B
C
// RUN: %llvmgcc %s -S -emit-llvm -o - | FileCheck %s
|
|
|
|
// rdar://7270273
|
|
void foo() __attribute__((aligned (64)));
|
|
void foo() {
|
|
// CHECK: define void @foo() {{.*}} align 64
|
|
}
|