Mercurial > hg > CbC > CbC_llvm
view clang/test/CodeGen/align-global-large.c @ 150:1d019706d866
LLVM10
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 15:10:13 +0900 |
parents | |
children |
line wrap: on
line source
// PR13606 - Clang crashes with large alignment attribute // RUN: %clang_cc1 -S -emit-llvm %s -o - -triple i686-pc-gnu | FileCheck %s // CHECK: x // CHECK: align // CHECK: 1048576 volatile char x[4000] __attribute__((aligned(0x100000))); int main (int argc, char ** argv) { // CHECK: y // CHECK: align // CHECK: 1048576 volatile char y[4000] __attribute__((aligned(0x100000))); return y[argc]; }