blob: e09d50ca079cc6608224b63a552026dea2e7eff3 [file] [log] [blame]
Tamas Berghammer6373cee2015-03-25 10:38:50 +00001// RUN: %clang_cc1 -triple x86_64-linux-android -emit-pch -o %t %s
2// RUN: %clang_cc1 -x ast -ast-print %t | FileCheck %s
3
4extern int a1_0[sizeof(long double) == 16 ? 1 : -1];
5extern int a1_i[__alignof(long double) == 16 ? 1 : -1];
6
7// Verify that long double is 128 bit IEEEquad
8
9long double foo = 1.0E4000L;
10// CHECK: long double foo = 1.00000000000000000000000000000000004E+4000L;