From: Yaron Keren Date: Fri, 21 Aug 2015 08:26:31 +0000 (+0000) Subject: Expand mingw-long-double.c to test for long double alignment. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ee94b2e19437e4fa61201bd42c5b320749d80383;p=clang Expand mingw-long-double.c to test for long double alignment. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@245679 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/mingw-long-double-size.c b/test/CodeGen/mingw-long-double.c similarity index 70% rename from test/CodeGen/mingw-long-double-size.c rename to test/CodeGen/mingw-long-double.c index dd1ffcb5ed..a29662c8e7 100644 --- a/test/CodeGen/mingw-long-double-size.c +++ b/test/CodeGen/mingw-long-double.c @@ -1,6 +1,12 @@ // REQUIRES: x86-registered-target // RUN: %clang_cc1 -triple i686-pc-windows-gnu -S %s -o - | FileCheck %s -check-prefix=CHECK_I686 -// CHECK_I686: lda,12 +// CHECK_I686: _lda,12 +// CHECK_I686: _lds,16 // RUN: %clang_cc1 -triple x86_64-pc-windows-gnu -S %s -o - | FileCheck %s -check-prefix=CHECK_X86_64 // CHECK_X86_64: lda,16 +// CHECK_X86_64: lds,32 long double lda; +struct { + char c; + long double ldb; +} lds;