brintos

brintos / llvm-project-archived public Read only

0
0
Text · 264 B · a88dd16 Raw
11 lines · c
1// RUN: %clang_cc1 -emit-llvm < %s | FileCheck %s2 3typedef struct __attribute((aligned(16))) {int x[4];} ff;4 5// CHECK: alloca %struct.ff, align 166// CHECK: alloca %struct.anon, align 167void a(void) {8  ff a;9  struct {int x[4];} b __attribute((aligned(16)));10}11