1 // PR13606 - Clang crashes with large alignment attribute
2 // RUN: %clang_cc1 -S -emit-llvm %s -o - -triple i686-pc-gnu | FileCheck %s
7 volatile char x
[4000] __attribute__((aligned(0x100000)));
10 main (int argc
, char ** argv
) {
14 volatile char y
[4000] __attribute__((aligned(0x100000)));