Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenCXX / pr54845.cpp
blobacf2c3121900b3043abc0cf0bcf14afdf2a099e3
1 // RUN: %clang_cc1 -triple i686-linux-gnu -emit-llvm %s -o - | FileCheck %s
2 // https://github.com/llvm/llvm-project/issues/54845
4 void *operator new(unsigned int, void *);
6 void test(double *d) {
7 // This store used to have an alignment of 8, which was incorrect as
8 // the i386 psABI only guarantees a 4-byte alignment for doubles.
10 // CHECK: store double 0.000000e+00, {{.*}}, align 4
11 new (d) double(0);