Changeset View
Changeset View
Standalone View
Standalone View
clang/test/CodeGenCXX/union-tbaa2.cpp
// RUN: %clang_cc1 %s -O2 -fno-experimental-new-pass-manager -std=c++11 -triple x86_64-unknown-linux-gnu -target-cpu x86-64 -target-feature +sse4.2 -target-feature +avx -emit-llvm -o - | FileCheck %s | // RUN: %clang_cc1 %s -O1 -std=c++11 -triple x86_64-unknown-linux-gnu -target-cpu x86-64 -target-feature +sse4.2 -target-feature +avx -emit-llvm -o - | FileCheck %s | ||||
nikic: Remove `-fno-experimental-new-pass-manager `? It was added to work around the NewPM/LegacyPM… | |||||
// Testcase from llvm.org/PR32056 | // Testcase from llvm.org/PR32056 | ||||
extern "C" int printf (const char *__restrict __format, ...); | extern "C" int printf (const char *__restrict __format, ...); | ||||
typedef double __m256d __attribute__((__vector_size__(32))); | typedef double __m256d __attribute__((__vector_size__(32))); | ||||
static __inline __m256d __attribute__((__always_inline__, __nodebug__, | static __inline __m256d __attribute__((__always_inline__, __nodebug__, | ||||
Show All 36 Lines |
Remove -fno-experimental-new-pass-manager ? It was added to work around the NewPM/LegacyPM discrepancy.