<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><br class=""><div><blockquote type="cite" class=""><div class="">On Jan 12, 2017, at 12:02 PM, Justin Bogner via cfe-commits <<a href="mailto:cfe-commits@lists.llvm.org" class="">cfe-commits@lists.llvm.org</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">Chandler Carruth via cfe-commits <</span><a href="mailto:cfe-commits@lists.llvm.org" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;" class="">cfe-commits@lists.llvm.org</a><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">> writes:</span><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><blockquote type="cite" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;" class="">Author: chandlerc<br class="">Date: Thu Dec 22 18:23:01 2016<br class="">New Revision: 290392<br class=""><br class="">URL: <a href="http://llvm.org/viewvc/llvm-project?rev=290392&view=rev" class="">http://llvm.org/viewvc/llvm-project?rev=290392&view=rev</a><br class="">Log:<br class="">Make '-disable-llvm-optzns' an alias for '-disable-llvm-passes'.<br class=""><br class="">Much to my surprise, '-disable-llvm-optzns' which I thought was the<br class="">magical flag I wanted to get at the raw LLVM IR coming out of Clang<br class="">deosn't do that. It still runs some passes over the IR. I don't want<br class="">that, I really want the *raw* IR coming out of Clang and I strongly<br class="">suspect everyone else using it is in the same camp.<br class=""><br class="">There is actually a flag that does what I want that I didn't know about<br class="">called '-disable-llvm-passes'. I suspect many others don't know about it<br class="">either. It both does what I want and is much simpler.<br class=""><br class="">This removes the confusing version and makes that spelling of the flag<br class="">an alias for '-disable-llvm-passes'. I've also moved everything in Clang<br class="">to use the 'passes' spelling as it seems both more accurate (*all* LLVM<br class="">passes are disabled, not just optimizations) and much easier to remember<br class="">and spell correctly.<br class=""><br class="">This is part of simplifying how Clang drives LLVM to make it cleaner to<br class="">wire up to the new pass manager.<br class=""><br class="">Differential Revision: <a href="https://reviews.llvm.org/D28047" class="">https://reviews.llvm.org/D28047</a><br class=""><br class="">Modified:<br class="">   cfe/trunk/include/clang/Driver/CC1Options.td<br class="">   cfe/trunk/include/clang/Frontend/CodeGenOptions.def<br class="">   cfe/trunk/lib/CodeGen/BackendUtil.cpp<br class="">   cfe/trunk/lib/Driver/Tools.cpp<br class="">   cfe/trunk/lib/Frontend/CompilerInvocation.cpp<br class="">   cfe/trunk/test/CXX/drs/dr158.cpp<br class="">   cfe/trunk/test/CXX/temp/temp.spec/temp.explicit/p9-linkage.cpp<br class="">   cfe/trunk/test/CodeGen/always_inline.c<br class="">   cfe/trunk/test/CodeGen/attr-minsize.cpp<br class="">   cfe/trunk/test/CodeGen/bool_test.c<br class="">   cfe/trunk/test/CodeGen/builtin-expect.c<br class="">   cfe/trunk/test/CodeGen/builtin-unpredictable.c<br class="">   cfe/trunk/test/CodeGen/fixup-depth-overflow.c<br class="">   cfe/trunk/test/CodeGen/function-attributes.c<br class="">   cfe/trunk/test/CodeGen/inline.c<br class="">   cfe/trunk/test/CodeGen/may-alias.c<br class="">   cfe/trunk/test/CodeGen/tbaa-class.cpp<br class="">   cfe/trunk/test/CodeGen/tbaa-ms-abi.cpp<br class="">   cfe/trunk/test/CodeGen/tbaa.cpp<br class="">   cfe/trunk/test/CodeGenCXX/PR26569.cpp<br class="">   cfe/trunk/test/CodeGenCXX/ctor-dtor-alias.cpp<br class="">   cfe/trunk/test/CodeGenCXX/cxx1y-variable-template-linkage.cpp<br class="">   cfe/trunk/test/CodeGenCXX/destructors.cpp<br class="">   cfe/trunk/test/CodeGenCXX/dllexport.cpp<br class="">   cfe/trunk/test/CodeGenCXX/dllimport-rtti.cpp<br class="">   cfe/trunk/test/CodeGenCXX/dllimport.cpp<br class="">   cfe/trunk/test/CodeGenCXX/exceptions-seh.cpp<br class="">   cfe/trunk/test/CodeGenCXX/explicit-instantiation.cpp<br class="">   cfe/trunk/test/CodeGenCXX/inline-hint.cpp<br class="">   cfe/trunk/test/CodeGenCXX/invariant.group-for-vptrs.cpp<br class="">   cfe/trunk/test/CodeGenCXX/linkage.cpp<br class="">   cfe/trunk/test/CodeGenCXX/microsoft-abi-eh-catch.cpp<br class="">   cfe/trunk/test/CodeGenCXX/microsoft-abi-eh-cleanups.cpp<br class="">   cfe/trunk/test/CodeGenCXX/microsoft-abi-extern-template.cpp<br class="">   cfe/trunk/test/CodeGenCXX/microsoft-abi-structors-alias.cpp<br class="">   cfe/trunk/test/CodeGenCXX/microsoft-abi-vftables.cpp<br class="">   cfe/trunk/test/CodeGenCXX/pr24097.cpp<br class="">   cfe/trunk/test/CodeGenCXX/sanitize-dtor-bit-field.cpp<br class="">   cfe/trunk/test/CodeGenCXX/sanitize-dtor-derived-class.cpp<br class="">   cfe/trunk/test/CodeGenCXX/sanitize-dtor-tail-call.cpp<br class="">   cfe/trunk/test/CodeGenCXX/sanitize-dtor-trivial.cpp<br class="">   cfe/trunk/test/CodeGenCXX/sanitize-dtor-vtable.cpp<br class="">   cfe/trunk/test/CodeGenCXX/stack-reuse-miscompile.cpp<br class="">   cfe/trunk/test/CodeGenCXX/strict-vtable-pointers.cpp<br class="">   cfe/trunk/test/CodeGenCXX/template-instantiation.cpp<br class="">   cfe/trunk/test/CodeGenCXX/thunks.cpp<br class="">   cfe/trunk/test/CodeGenCXX/virtual-destructor-calls.cpp<br class="">   cfe/trunk/test/CodeGenCXX/visibility-inlines-hidden.cpp<br class="">   cfe/trunk/test/CodeGenCXX/vtable-assume-load.cpp<br class="">   cfe/trunk/test/CodeGenCXX/vtable-available-externally.cpp<br class="">   cfe/trunk/test/CodeGenCXX/vtable-linkage.cpp<br class="">   cfe/trunk/test/CodeGenObjC/arc-blocks.m<br class="">   cfe/trunk/test/CodeGenObjC/arc-bridged-cast.m<br class="">   cfe/trunk/test/CodeGenObjC/arc-literals.m<br class="">   cfe/trunk/test/CodeGenObjC/arc-no-arc-exceptions.m<br class="">   cfe/trunk/test/CodeGenObjC/arc-precise-lifetime.m<br class="">   cfe/trunk/test/CodeGenObjC/arc-ternary-op.m<br class="">   cfe/trunk/test/CodeGenObjC/arc-unsafeclaim.m<br class="">   cfe/trunk/test/CodeGenObjC/arc.m<br class="">   cfe/trunk/test/CodeGenObjC/nsvalue-objc-boxable-ios-arc.m<br class="">   cfe/trunk/test/CodeGenObjC/nsvalue-objc-boxable-ios.m<br class="">   cfe/trunk/test/CodeGenObjC/nsvalue-objc-boxable-mac-arc.m<br class="">   cfe/trunk/test/CodeGenObjC/nsvalue-objc-boxable-mac.m<br class="">   cfe/trunk/test/CodeGenObjCXX/arc-globals.mm<br class="">   cfe/trunk/test/CodeGenObjCXX/arc-move.mm<br class="">   cfe/trunk/test/CodeGenObjCXX/arc-new-delete.mm<br class="">   cfe/trunk/test/CodeGenObjCXX/arc-references.mm<br class="">   cfe/trunk/test/CodeGenObjCXX/arc.mm<br class="">   cfe/trunk/test/CodeGenObjCXX/destroy.mm<br class="">   cfe/trunk/test/CodeGenObjCXX/literals.mm<br class="">   cfe/trunk/test/Driver/cc1-response-files.c<br class="">   cfe/trunk/test/Driver/cl-options.c<br class="">   cfe/trunk/test/Modules/cxx-irgen.cpp<br class="">   cfe/trunk/test/OpenMP/declare_reduction_codegen.c<br class="">   cfe/trunk/test/OpenMP/declare_reduction_codegen.cpp<br class="">   cfe/trunk/test/Profile/func-entry.c<br class="">   cfe/trunk/test/Profile/gcc-flag-compatibility.c<br class="">   cfe/trunk/test/Profile/profile-summary.c<br class=""><br class="">Modified: cfe/trunk/include/clang/Driver/CC1Options.td<br class="">URL:<br class=""><a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Driver/CC1Options.td?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Driver/CC1Options.td?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/include/clang/Driver/CC1Options.td (original)<br class="">+++ cfe/trunk/include/clang/Driver/CC1Options.td Thu Dec 22 18:23:01 2016<br class="">@@ -160,13 +160,13 @@ def fno_math_builtin : Flag<["-"], "fno-<br class="">  HelpText<"Disable implicit builtin knowledge of math functions">;<br class="">}<br class=""><br class="">-def disable_llvm_optzns : Flag<["-"], "disable-llvm-optzns">,<br class="">-  HelpText<"Don't run LLVM optimization passes">;<br class="">def disable_llvm_verifier : Flag<["-"], "disable-llvm-verifier">,<br class="">  HelpText<"Don't run the LLVM IR verifier pass">;<br class="">def disable_llvm_passes : Flag<["-"], "disable-llvm-passes">,<br class="">  HelpText<"Use together with -emit-llvm to get pristine LLVM IR from the "<br class="">           "frontend by not running any LLVM passes at all">;<br class="">+def disable_llvm_optzns : Flag<["-"], "disable-llvm-optzns">,<br class="">+  Alias<disable_llvm_passes>;<br class="">def disable_red_zone : Flag<["-"], "disable-red-zone">,<br class="">  HelpText<"Do not emit code that uses the red zone.">;<br class="">def dwarf_column_info : Flag<["-"], "dwarf-column-info">,<br class=""><br class="">Modified: cfe/trunk/include/clang/Frontend/CodeGenOptions.def<br class="">URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Frontend/CodeGenOptions.def?rev=290392&r1=290391&r2=290392&view=diff<br class="">==============================================================================<br class="">--- cfe/trunk/include/clang/Frontend/CodeGenOptions.def (original)<br class="">+++ cfe/trunk/include/clang/Frontend/CodeGenOptions.def Thu Dec 22 18:23:01 2016<br class="">@@ -49,10 +49,6 @@ CODEGENOPT(DisableFPElim     , 1, 0) ///<br class="">CODEGENOPT(DisableFree       , 1, 0) ///< Don't free memory.<br class="">CODEGENOPT(DiscardValueNames , 1, 0) ///< Discard Value Names from the IR (LLVMContext flag)<br class="">CODEGENOPT(DisableGCov       , 1, 0) ///< Don't run the GCov pass, for testing.<br class="">-CODEGENOPT(DisableLLVMOpts   , 1, 0) ///< Don't run any optimizations, for use in<br class="">-                                     ///< getting .bc files that correspond to the<br class="">-                                     ///< internal state before optimizations are<br class="">-                                     ///< done.<br class="">CODEGENOPT(DisableLLVMPasses , 1, 0) ///< Don't run any LLVM IR passes to get<br class="">                                     ///< the pristine IR generated by the<br class="">                                     ///< frontend.<br class=""><br class="">Modified: cfe/trunk/lib/CodeGen/BackendUtil.cpp<br class="">URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/BackendUtil.cpp?rev=290392&r1=290391&r2=290392&view=diff<br class="">==============================================================================<br class="">--- cfe/trunk/lib/CodeGen/BackendUtil.cpp (original)<br class="">+++ cfe/trunk/lib/CodeGen/BackendUtil.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -284,19 +284,14 @@ static void addSymbolRewriterPass(const<br class=""><br class="">void EmitAssemblyHelper::CreatePasses(legacy::PassManager &MPM,<br class="">                                      legacy::FunctionPassManager &FPM) {<br class="">+  // Handle disabling of all LLVM passes, where we want to preserve the<br class="">+  // internal module before any optimization.<br class="">  if (CodeGenOpts.DisableLLVMPasses)<br class="">    return;<br class=""><br class="">  unsigned OptLevel = CodeGenOpts.OptimizationLevel;<br class="">  CodeGenOptions::InliningMethod Inlining = CodeGenOpts.getInlining();<br class=""><br class="">-  // Handle disabling of LLVM optimization, where we want to preserve the<br class="">-  // internal module before any optimization.<br class="">-  if (CodeGenOpts.DisableLLVMOpts) {<br class="">-    OptLevel = 0;<br class="">-    Inlining = CodeGenOpts.NoInlining;<br class="">-  }<br class="">-<br class="">  PassManagerBuilderWrapper PMBuilder(CodeGenOpts, LangOpts);<br class=""><br class="">  // Figure out TargetLibraryInfo.  This needs to be added to MPM and FPM<br class=""><br class="">Modified: cfe/trunk/lib/Driver/Tools.cpp<br class="">URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Driver/Tools.cpp?rev=290392&r1=290391&r2=290392&view=diff<br class="">==============================================================================<br class="">--- cfe/trunk/lib/Driver/Tools.cpp (original)<br class="">+++ cfe/trunk/lib/Driver/Tools.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -4221,7 +4221,7 @@ void Clang::ConstructJob(Compilation &C,<br class="">    // Add flags implied by -fembed-bitcode.<br class="">    Args.AddLastArg(CmdArgs, options::OPT_fembed_bitcode_EQ);<br class="">    // Disable all llvm IR level optimizations.<br class="">-    CmdArgs.push_back("-disable-llvm-optzns");<br class="">+    CmdArgs.push_back("-disable-llvm-passes");<br class="">  }<br class="">  if (C.getDriver().embedBitcodeMarkerOnly())<br class="">    CmdArgs.push_back("-fembed-bitcode=marker");<br class="">@@ -6385,8 +6385,8 @@ void Clang::ConstructJob(Compilation &C,<br class=""><br class="">    // We translate this by hand to the -cc1 argument, since nightly test uses<br class="">    // it and developers have been trained to spell it with -mllvm.<br class="">-    if (StringRef(A->getValue(0)) == "-disable-llvm-optzns") {<br class="">-      CmdArgs.push_back("-disable-llvm-optzns");<br class="">+    if (StringRef(A->getValue(0)) == "-disable-llvm-passes") {<br class="">+      CmdArgs.push_back("-disable-llvm-passes");<br class=""></blockquote><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">This isn't quite right, it should either be left as-is or dropped</span><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">completely. This path was allowing people to spell "-mllvm</span><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">-disable-llvm-optzns" for legacy reasons, even though the correct</span><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">spelling is "-Xclang -disable-llvm-optzns". There's no need to add</span><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">legacy support for "-mllvm -disable-llvm-passes", since that never</span><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">worked.</span><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""></div></blockquote><div><br class=""></div><div>+1.</div><div>Please do not introduce this in 4.0 (branching scheduled today).</div><div><br class=""></div><div>Thanks,</div><div><br class=""></div><div>— </div><div>Mehdi</div><div><br class=""></div><div><br class=""></div><br class=""><blockquote type="cite" class=""><div class=""><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><blockquote type="cite" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;" class="">    } else<br class="">      A->render(Args, CmdArgs);<br class="">  }<br class=""><br class="">Modified: cfe/trunk/lib/Frontend/CompilerInvocation.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Frontend/CompilerInvocation.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Frontend/CompilerInvocation.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/lib/Frontend/CompilerInvocation.cpp (original)<br class="">+++ cfe/trunk/lib/Frontend/CompilerInvocation.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -513,7 +513,6 @@ static bool ParseCodeGenArgs(CodeGenOpti<br class="">          Args.getLastArg(OPT_emit_llvm_uselists, OPT_no_emit_llvm_uselists))<br class="">    Opts.EmitLLVMUseLists = A->getOption().getID() == OPT_emit_llvm_uselists;<br class=""><br class="">-  Opts.DisableLLVMOpts = Args.hasArg(OPT_disable_llvm_optzns);<br class="">  Opts.DisableLLVMPasses = Args.hasArg(OPT_disable_llvm_passes);<br class="">  Opts.DisableRedZone = Args.hasArg(OPT_disable_red_zone);<br class="">  Opts.ForbidGuardVariables = Args.hasArg(OPT_fforbid_guard_variables);<br class=""><br class="">Modified: cfe/trunk/test/CXX/drs/dr158.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CXX/drs/dr158.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CXX/drs/dr158.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CXX/drs/dr158.cpp (original)<br class="">+++ cfe/trunk/test/CXX/drs/dr158.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,7 +1,7 @@<br class="">-// RUN: %clang_cc1 -triple x86_64-linux -std=c++98 %s -O3 -disable-llvm-optzns -pedantic-errors -emit-llvm -o - | FileCheck %s<br class="">-// RUN: %clang_cc1 -triple x86_64-linux -std=c++11 %s -O3 -disable-llvm-optzns -pedantic-errors -emit-llvm -o - | FileCheck %s<br class="">-// RUN: %clang_cc1 -triple x86_64-linux -std=c++14 %s -O3 -disable-llvm-optzns -pedantic-errors -emit-llvm -o - | FileCheck %s<br class="">-// RUN: %clang_cc1 -triple x86_64-linux -std=c++1z %s -O3 -disable-llvm-optzns -pedantic-errors -emit-llvm -o - | FileCheck %s<br class="">+// RUN: %clang_cc1 -triple x86_64-linux -std=c++98 %s -O3 -disable-llvm-passes -pedantic-errors -emit-llvm -o - | FileCheck %s<br class="">+// RUN: %clang_cc1 -triple x86_64-linux -std=c++11 %s -O3 -disable-llvm-passes -pedantic-errors -emit-llvm -o - | FileCheck %s<br class="">+// RUN: %clang_cc1 -triple x86_64-linux -std=c++14 %s -O3 -disable-llvm-passes -pedantic-errors -emit-llvm -o - | FileCheck %s<br class="">+// RUN: %clang_cc1 -triple x86_64-linux -std=c++1z %s -O3 -disable-llvm-passes -pedantic-errors -emit-llvm -o - | FileCheck %s<br class=""><br class="">// dr158: yes<br class=""><br class=""><br class="">Modified: cfe/trunk/test/CXX/temp/temp.spec/temp.explicit/p9-linkage.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CXX/temp/temp.spec/temp.explicit/p9-linkage.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CXX/temp/temp.spec/temp.explicit/p9-linkage.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CXX/temp/temp.spec/temp.explicit/p9-linkage.cpp (original)<br class="">+++ cfe/trunk/test/CXX/temp/temp.spec/temp.explicit/p9-linkage.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,4 +1,4 @@<br class="">-// RUN: %clang_cc1 -triple x86_64-apple-darwin -O1 -disable-llvm-optzns -emit-llvm -std=c++11 -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -triple x86_64-apple-darwin -O1 -disable-llvm-passes -emit-llvm -std=c++11 -o - %s | FileCheck %s<br class=""><br class="">template<typename T><br class="">struct X0 {<br class=""><br class="">Modified: cfe/trunk/test/CodeGen/always_inline.c<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/always_inline.c?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/always_inline.c?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGen/always_inline.c (original)<br class="">+++ cfe/trunk/test/CodeGen/always_inline.c Thu Dec 22 18:23:01 2016<br class="">@@ -1,7 +1,7 @@<br class="">// RUN: %clang -emit-llvm -S -o %t %s<br class="">// RUN: not grep '@f0' %t<br class="">// RUN: not grep 'call ' %t<br class="">-// RUN: %clang -mllvm -disable-llvm-optzns -emit-llvm -S -o %t %s<br class="">+// RUN: %clang -mllvm -disable-llvm-passes -emit-llvm -S -o %t %s<br class="">// RUN: grep '@f0' %t | count 2<br class=""><br class="">//static int f0() {<span class="Apple-converted-space"> </span><br class=""><br class="">Modified: cfe/trunk/test/CodeGen/attr-minsize.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/attr-minsize.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/attr-minsize.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGen/attr-minsize.cpp (original)<br class="">+++ cfe/trunk/test/CodeGen/attr-minsize.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,9 +1,9 @@<br class="">-// RUN: %clang_cc1 -Oz -disable-llvm-optzns -emit-llvm %s -o - | FileCheck %s -check-prefix=Oz<br class="">-// RUN: %clang_cc1     -disable-llvm-optzns -emit-llvm %s -o - | FileCheck %s -check-prefix=OTHER<br class="">-// RUN: %clang_cc1 -O1 -disable-llvm-optzns -emit-llvm %s -o - | FileCheck %s -check-prefix=OTHER<br class="">-// RUN: %clang_cc1 -O2 -disable-llvm-optzns -emit-llvm %s -o - | FileCheck %s -check-prefix=OTHER<br class="">-// RUN: %clang_cc1 -O3 -disable-llvm-optzns -emit-llvm %s -o - | FileCheck %s -check-prefix=OTHER<br class="">-// RUN: %clang_cc1 -Os -disable-llvm-optzns -emit-llvm %s -o - | FileCheck %s -check-prefix=OTHER<br class="">+// RUN: %clang_cc1 -Oz -disable-llvm-passes -emit-llvm %s -o - | FileCheck %s -check-prefix=Oz<br class="">+// RUN: %clang_cc1     -disable-llvm-passes -emit-llvm %s -o - | FileCheck %s -check-prefix=OTHER<br class="">+// RUN: %clang_cc1 -O1 -disable-llvm-passes -emit-llvm %s -o - | FileCheck %s -check-prefix=OTHER<br class="">+// RUN: %clang_cc1 -O2 -disable-llvm-passes -emit-llvm %s -o - | FileCheck %s -check-prefix=OTHER<br class="">+// RUN: %clang_cc1 -O3 -disable-llvm-passes -emit-llvm %s -o - | FileCheck %s -check-prefix=OTHER<br class="">+// RUN: %clang_cc1 -Os -disable-llvm-passes -emit-llvm %s -o - | FileCheck %s -check-prefix=OTHER<br class="">// Check that we set the minsize attribute on each function<br class="">// when Oz optimization level is set.<br class=""><br class=""><br class="">Modified: cfe/trunk/test/CodeGen/bool_test.c<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/bool_test.c?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/bool_test.c?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGen/bool_test.c (original)<br class="">+++ cfe/trunk/test/CodeGen/bool_test.c Thu Dec 22 18:23:01 2016<br class="">@@ -1,5 +1,5 @@<br class="">// REQUIRES: powerpc-registered-target<br class="">-// RUN: %clang_cc1 -triple powerpc-apple-macosx10.4.0 -emit-llvm -o - %s -O2 -disable-llvm-optzns | FileCheck %s<br class="">+// RUN: %clang_cc1 -triple powerpc-apple-macosx10.4.0 -emit-llvm -o - %s -O2 -disable-llvm-passes | FileCheck %s<br class=""><br class="">int boolsize = sizeof(_Bool);<br class="">// CHECK: boolsize = global i32 4, align 4<br class=""><br class="">Modified: cfe/trunk/test/CodeGen/builtin-expect.c<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/builtin-expect.c?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/builtin-expect.c?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGen/builtin-expect.c (original)<br class="">+++ cfe/trunk/test/CodeGen/builtin-expect.c Thu Dec 22 18:23:01 2016<br class="">@@ -1,4 +1,4 @@<br class="">-// RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -o - %s -O1 -disable-llvm-optzns | FileCheck %s --check-prefix=ALL --check-prefix=O1<br class="">+// RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -o - %s -O1 -disable-llvm-passes | FileCheck %s --check-prefix=ALL --check-prefix=O1<br class="">// RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -o - %s -O0 | FileCheck %s --check-prefix=ALL --check-prefix=O0<br class=""><br class="">// In all tests, make sure that no expect is generated if optimizations are off.<br class=""><br class="">Modified: cfe/trunk/test/CodeGen/builtin-unpredictable.c<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/builtin-unpredictable.c?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/builtin-unpredictable.c?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGen/builtin-unpredictable.c (original)<br class="">+++ cfe/trunk/test/CodeGen/builtin-unpredictable.c Thu Dec 22 18:23:01 2016<br class="">@@ -1,4 +1,4 @@<br class="">-// RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -disable-llvm-optzns -o - %s -O1 | FileCheck %s<br class="">+// RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -disable-llvm-passes -o - %s -O1 | FileCheck %s<br class="">// RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -o - %s -O0 | FileCheck %s --check-prefix=CHECK_O0<br class=""><br class="">// When optimizing, the builtin should be converted to metadata.<br class=""><br class="">Modified: cfe/trunk/test/CodeGen/fixup-depth-overflow.c<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/fixup-depth-overflow.c?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/fixup-depth-overflow.c?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGen/fixup-depth-overflow.c (original)<br class="">+++ cfe/trunk/test/CodeGen/fixup-depth-overflow.c Thu Dec 22 18:23:01 2016<br class="">@@ -1,4 +1,4 @@<br class="">-// RUN: %clang_cc1 -O1 -disable-llvm-optzns -emit-llvm -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -O1 -disable-llvm-passes -emit-llvm -o - %s | FileCheck %s<br class=""><br class="">#define M if (x) goto L1;<br class="">#define M10 M M M M M M M M M M<br class=""><br class="">Modified: cfe/trunk/test/CodeGen/function-attributes.c<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/function-attributes.c?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/function-attributes.c?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGen/function-attributes.c (original)<br class="">+++ cfe/trunk/test/CodeGen/function-attributes.c Thu Dec 22 18:23:01 2016<br class="">@@ -1,5 +1,5 @@<br class="">-// RUN: %clang_cc1 -triple i386-unknown-unknown -emit-llvm -disable-llvm-optzns -Os -o - %s | FileCheck %s<br class="">-// RUN: %clang_cc1 -triple i386-unknown-unknown -emit-llvm -disable-llvm-optzns -Os -std=c99 -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -triple i386-unknown-unknown -emit-llvm -disable-llvm-passes -Os -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -triple i386-unknown-unknown -emit-llvm -disable-llvm-passes -Os -std=c99 -o - %s | FileCheck %s<br class="">// CHECK: define signext i8 @f0(i32 %x) [[NUW:#[0-9]+]]<br class="">// CHECK: define zeroext i8 @f1(i32 %x) [[NUW]]<br class="">// CHECK: define void @f2(i8 signext %x) [[NUW]]<br class=""><br class="">Modified: cfe/trunk/test/CodeGen/inline.c<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/inline.c?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/inline.c?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGen/inline.c (original)<br class="">+++ cfe/trunk/test/CodeGen/inline.c Thu Dec 22 18:23:01 2016<br class="">@@ -1,5 +1,5 @@<br class="">// RUN: echo "GNU89 tests:"<br class="">-// RUN: %clang_cc1 %s -triple i386-unknown-unknown -O1 -disable-llvm-optzns -emit-llvm -o - -std=gnu89 | FileCheck %s --check-prefix=CHECK1<br class="">+// RUN: %clang_cc1 %s -triple i386-unknown-unknown -O1 -disable-llvm-passes -emit-llvm -o - -std=gnu89 | FileCheck %s --check-prefix=CHECK1<br class="">// CHECK1-LABEL: define i32 @foo()<br class="">// CHECK1-LABEL: define i32 @bar()<br class="">// CHECK1-LABEL: define void @unreferenced1()<br class="">@@ -21,7 +21,7 @@<br class="">// CHECK1-LABEL: define available_externally void @gnu_ei_inline()<br class=""><br class="">// RUN: echo "C99 tests:"<br class="">-// RUN: %clang_cc1 %s -triple i386-unknown-unknown -O1 -disable-llvm-optzns -emit-llvm -o - -std=gnu99 | FileCheck %s --check-prefix=CHECK2<br class="">+// RUN: %clang_cc1 %s -triple i386-unknown-unknown -O1 -disable-llvm-passes -emit-llvm -o - -std=gnu99 | FileCheck %s --check-prefix=CHECK2<br class="">// CHECK2-LABEL: define i32 @ei()<br class="">// CHECK2-LABEL: define i32 @bar()<br class="">// CHECK2-NOT: unreferenced1<br class="">@@ -43,7 +43,7 @@<br class="">// CHECK2-LABEL: define available_externally void @gnu_ei_inline()<br class=""><br class="">// RUN: echo "C++ tests:"<br class="">-// RUN: %clang_cc1 -x c++ %s -triple i386-unknown-unknown -O1 -disable-llvm-optzns -emit-llvm -o - -std=c++98 | FileCheck %s --check-prefix=CHECK3<br class="">+// RUN: %clang_cc1 -x c++ %s -triple i386-unknown-unknown -O1 -disable-llvm-passes -emit-llvm -o - -std=c++98 | FileCheck %s --check-prefix=CHECK3<br class="">// CHECK3-LABEL: define i32 @_Z3barv()<br class="">// CHECK3-LABEL: define linkonce_odr i32 @_Z3foov()<br class="">// CHECK3-NOT: unreferenced<br class="">@@ -53,7 +53,7 @@<br class="">// CHECK3-LABEL: define linkonce_odr i32 @_Z2eiv()<br class=""><br class="">// RUN: echo "MS C Mode tests:"<br class="">-// RUN: %clang_cc1 %s -triple i386-pc-win32 -O1 -disable-llvm-optzns -emit-llvm -o - -std=c99 | FileCheck %s --check-prefix=CHECK4<br class="">+// RUN: %clang_cc1 %s -triple i386-pc-win32 -O1 -disable-llvm-passes -emit-llvm -o - -std=c99 | FileCheck %s --check-prefix=CHECK4<br class="">// CHECK4-NOT: define weak_odr void @_Exit(<br class="">// CHECK4-LABEL: define weak_odr i32 @ei()<br class="">// CHECK4-LABEL: define i32 @bar()<br class=""><br class="">Modified: cfe/trunk/test/CodeGen/may-alias.c<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/may-alias.c?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/may-alias.c?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGen/may-alias.c (original)<br class="">+++ cfe/trunk/test/CodeGen/may-alias.c Thu Dec 22 18:23:01 2016<br class="">@@ -1,5 +1,5 @@<br class="">-// RUN: %clang_cc1 -Werror -triple i386-unknown-unknown -emit-llvm -O1 -no-struct-path-tbaa -disable-llvm-optzns -o - %s | FileCheck %s<br class="">-// RUN: %clang_cc1 -Werror -triple i386-unknown-unknown -emit-llvm -O1 -disable-llvm-optzns -o - %s | FileCheck %s -check-prefix=PATH<br class="">+// RUN: %clang_cc1 -Werror -triple i386-unknown-unknown -emit-llvm -O1 -no-struct-path-tbaa -disable-llvm-passes -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -Werror -triple i386-unknown-unknown -emit-llvm -O1 -disable-llvm-passes -o - %s | FileCheck %s -check-prefix=PATH<br class=""><br class="">// Types with the may_alias attribute should be considered equivalent<br class="">// to char for aliasing.<br class=""><br class="">Modified: cfe/trunk/test/CodeGen/tbaa-class.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/tbaa-class.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/tbaa-class.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGen/tbaa-class.cpp (original)<br class="">+++ cfe/trunk/test/CodeGen/tbaa-class.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,5 +1,5 @@<br class="">-// RUN: %clang_cc1 -triple x86_64-apple-darwin -O1 -no-struct-path-tbaa -disable-llvm-optzns %s -emit-llvm -o - | FileCheck %s<br class="">-// RUN: %clang_cc1 -triple x86_64-apple-darwin -O1 -disable-llvm-optzns %s -emit-llvm -o - | FileCheck %s -check-prefix=PATH<br class="">+// RUN: %clang_cc1 -triple x86_64-apple-darwin -O1 -no-struct-path-tbaa -disable-llvm-passes %s -emit-llvm -o - | FileCheck %s<br class="">+// RUN: %clang_cc1 -triple x86_64-apple-darwin -O1 -disable-llvm-passes %s -emit-llvm -o - | FileCheck %s -check-prefix=PATH<br class="">// Test TBAA metadata generated by front-end.<br class=""><br class="">typedef unsigned char uint8_t;<br class=""><br class="">Modified: cfe/trunk/test/CodeGen/tbaa-ms-abi.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/tbaa-ms-abi.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/tbaa-ms-abi.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGen/tbaa-ms-abi.cpp (original)<br class="">+++ cfe/trunk/test/CodeGen/tbaa-ms-abi.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,4 +1,4 @@<br class="">-// RUN: %clang_cc1 -triple i686-pc-win32 -disable-llvm-optzns -emit-llvm -o - -O1 %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -triple i686-pc-win32 -disable-llvm-passes -emit-llvm -o - -O1 %s | FileCheck %s<br class="">//<br class="">// Test that TBAA works in the Microsoft C++ ABI.  We used to error out while<br class="">// attempting to mangle RTTI.<br class=""><br class="">Modified: cfe/trunk/test/CodeGen/tbaa.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/tbaa.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/tbaa.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGen/tbaa.cpp (original)<br class="">+++ cfe/trunk/test/CodeGen/tbaa.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,7 +1,7 @@<br class="">-// RUN: %clang_cc1 -triple x86_64-apple-darwin -O1 -no-struct-path-tbaa -disable-llvm-optzns %s -emit-llvm -o - | FileCheck %s<br class="">-// RUN: %clang_cc1 -triple x86_64-apple-darwin -O1 -disable-llvm-optzns %s -emit-llvm -o - | FileCheck %s -check-prefix=PATH<br class="">-// RUN: %clang_cc1 -triple x86_64-apple-darwin -O0 -disable-llvm-optzns %s -emit-llvm -o - | FileCheck %s -check-prefix=NO-TBAA<br class="">-// RUN: %clang_cc1 -triple x86_64-apple-darwin -O1 -relaxed-aliasing -disable-llvm-optzns %s -emit-llvm -o - | FileCheck %s -check-prefix=NO-TBAA<br class="">+// RUN: %clang_cc1 -triple x86_64-apple-darwin -O1 -no-struct-path-tbaa -disable-llvm-passes %s -emit-llvm -o - | FileCheck %s<br class="">+// RUN: %clang_cc1 -triple x86_64-apple-darwin -O1 -disable-llvm-passes %s -emit-llvm -o - | FileCheck %s -check-prefix=PATH<br class="">+// RUN: %clang_cc1 -triple x86_64-apple-darwin -O0 -disable-llvm-passes %s -emit-llvm -o - | FileCheck %s -check-prefix=NO-TBAA<br class="">+// RUN: %clang_cc1 -triple x86_64-apple-darwin -O1 -relaxed-aliasing -disable-llvm-passes %s -emit-llvm -o - | FileCheck %s -check-prefix=NO-TBAA<br class="">// Test TBAA metadata generated by front-end.<br class="">//<br class="">// NO-TBAA-NOT: !tbaa<br class=""><br class="">Modified: cfe/trunk/test/CodeGenCXX/PR26569.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/PR26569.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/PR26569.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenCXX/PR26569.cpp (original)<br class="">+++ cfe/trunk/test/CodeGenCXX/PR26569.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,4 +1,4 @@<br class="">-// RUN: %clang_cc1 -triple i686-pc-win32 -fms-extensions -emit-llvm -O1 -disable-llvm-optzns %s -o - | FileCheck %s<br class="">+// RUN: %clang_cc1 -triple i686-pc-win32 -fms-extensions -emit-llvm -O1 -disable-llvm-passes %s -o - | FileCheck %s<br class=""><br class="">class __declspec(dllimport) A {<br class="">  virtual void m_fn1();<br class=""><br class="">Modified: cfe/trunk/test/CodeGenCXX/ctor-dtor-alias.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/ctor-dtor-alias.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/ctor-dtor-alias.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenCXX/ctor-dtor-alias.cpp (original)<br class="">+++ cfe/trunk/test/CodeGenCXX/ctor-dtor-alias.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,6 +1,6 @@<br class="">// RUN: %clang_cc1 %s -triple i686-linux -emit-llvm -o - -mconstructor-aliases | FileCheck --check-prefix=NOOPT %s<br class=""><br class="">-// RUN: %clang_cc1 %s -triple i686-linux -emit-llvm -o - -mconstructor-aliases -O1 -disable-llvm-optzns > %t<br class="">+// RUN: %clang_cc1 %s -triple i686-linux -emit-llvm -o - -mconstructor-aliases -O1 -disable-llvm-passes > %t<br class="">// RUN: FileCheck --check-prefix=CHECK1 --input-file=%t %s<br class="">// RUN: FileCheck --check-prefix=CHECK2 --input-file=%t %s<br class="">// RUN: FileCheck --check-prefix=CHECK3 --input-file=%t %s<br class="">@@ -8,7 +8,7 @@<br class="">// RUN: FileCheck --check-prefix=CHECK5 --input-file=%t %s<br class="">// RUN: FileCheck --check-prefix=CHECK6 --input-file=%t %s<br class=""><br class="">-// RUN: %clang_cc1 %s -triple i686-pc-windows-gnu -emit-llvm -o - -mconstructor-aliases -O1 -disable-llvm-optzns | FileCheck --check-prefix=COFF %s<br class="">+// RUN: %clang_cc1 %s -triple i686-pc-windows-gnu -emit-llvm -o - -mconstructor-aliases -O1 -disable-llvm-passes | FileCheck --check-prefix=COFF %s<br class=""><br class="">namespace test1 {<br class="">// Test that we produce the apropriate comdats when creating aliases to<br class=""><br class="">Modified: cfe/trunk/test/CodeGenCXX/cxx1y-variable-template-linkage.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/cxx1y-variable-template-linkage.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/cxx1y-variable-template-linkage.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenCXX/cxx1y-variable-template-linkage.cpp (original)<br class="">+++ cfe/trunk/test/CodeGenCXX/cxx1y-variable-template-linkage.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,5 +1,5 @@<br class="">-// RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -emit-llvm -std=c++1y -O1 -disable-llvm-optzns %s -o - | FileCheck %s -check-prefix=CHECKA -check-prefix=CHECK<br class="">-// RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -emit-llvm -std=c++1y -O1 -disable-llvm-optzns -fcxx-exceptions %s -o - | FileCheck %s -check-prefix=CHECKB -check-prefix=CHECK<br class="">+// RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -emit-llvm -std=c++1y -O1 -disable-llvm-passes %s -o - | FileCheck %s -check-prefix=CHECKA -check-prefix=CHECK<br class="">+// RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -emit-llvm -std=c++1y -O1 -disable-llvm-passes -fcxx-exceptions %s -o - | FileCheck %s -check-prefix=CHECKB -check-prefix=CHECK<br class="">// expected-no-diagnostics<br class=""><br class="">// The variable template specialization x<Foo> generated in each file<br class=""><br class="">Modified: cfe/trunk/test/CodeGenCXX/destructors.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/destructors.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/destructors.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenCXX/destructors.cpp (original)<br class="">+++ cfe/trunk/test/CodeGenCXX/destructors.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,10 +1,10 @@<br class="">-// RUN: %clang_cc1 %s -triple x86_64-apple-darwin10 -emit-llvm -o - -mconstructor-aliases -fcxx-exceptions -fexceptions -O1 -disable-llvm-optzns -std=c++03 > %t<br class="">+// RUN: %clang_cc1 %s -triple x86_64-apple-darwin10 -emit-llvm -o - -mconstructor-aliases -fcxx-exceptions -fexceptions -O1 -disable-llvm-passes -std=c++03 > %t<br class="">// RUN: FileCheck --check-prefix=CHECK1 --input-file=%t %s<br class="">// RUN: FileCheck --check-prefix=CHECK2 --input-file=%t %s<br class="">// RUN: FileCheck --check-prefix=CHECK3 --input-file=%t %s<br class="">// RUN: FileCheck --check-prefixes=CHECK4,CHECK4v03 --input-file=%t %s<br class="">// RUN: FileCheck --check-prefixes=CHECK5,CHECK5v03 --input-file=%t %s<br class="">-// RUN: %clang_cc1 %s -triple x86_64-apple-darwin10 -emit-llvm -o - -mconstructor-aliases -fcxx-exceptions -fexceptions -O1 -disable-llvm-optzns -std=c++11 > %t2<br class="">+// RUN: %clang_cc1 %s -triple x86_64-apple-darwin10 -emit-llvm -o - -mconstructor-aliases -fcxx-exceptions -fexceptions -O1 -disable-llvm-passes -std=c++11 > %t2<br class="">// RUN: FileCheck --check-prefix=CHECK1    --input-file=%t2 %s<br class="">// RUN: FileCheck --check-prefix=CHECK2v11 --input-file=%t2 %s<br class="">// RUN: FileCheck --check-prefix=CHECK3    --input-file=%t2 %s<br class=""><br class="">Modified: cfe/trunk/test/CodeGenCXX/dllexport.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/dllexport.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/dllexport.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenCXX/dllexport.cpp (original)<br class="">+++ cfe/trunk/test/CodeGenCXX/dllexport.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,5 +1,5 @@<br class="">-// RUN: %clang_cc1 -triple i686-windows-msvc   -emit-llvm -std=c++1y -fno-threadsafe-statics -fms-extensions -O1 -mconstructor-aliases -disable-llvm-optzns -o - %s -w -fms-compatibility-version=19.00 | FileCheck --check-prefix=MSC --check-prefix=M32 -check-prefix=MSVC2015 -check-prefix=M32MSVC2015 %s<br class="">-// RUN: %clang_cc1 -triple i686-windows-msvc   -emit-llvm -std=c++1y -fno-threadsafe-statics -fms-extensions -O1 -mconstructor-aliases -disable-llvm-optzns -o - %s -w -fms-compatibility-version=18.00 | FileCheck --check-prefix=MSC --check-prefix=M32 -check-prefix=MSVC2013 -check-prefix=M32MSVC2013 %s<br class="">+// RUN: %clang_cc1 -triple i686-windows-msvc   -emit-llvm -std=c++1y -fno-threadsafe-statics -fms-extensions -O1 -mconstructor-aliases -disable-llvm-passes -o - %s -w -fms-compatibility-version=19.00 | FileCheck --check-prefix=MSC --check-prefix=M32 -check-prefix=MSVC2015 -check-prefix=M32MSVC2015 %s<br class="">+// RUN: %clang_cc1 -triple i686-windows-msvc   -emit-llvm -std=c++1y -fno-threadsafe-statics -fms-extensions -O1 -mconstructor-aliases -disable-llvm-passes -o - %s -w -fms-compatibility-version=18.00 | FileCheck --check-prefix=MSC --check-prefix=M32 -check-prefix=MSVC2013 -check-prefix=M32MSVC2013 %s<br class=""><br class="">// RUN: %clang_cc1 -triple x86_64-windows-msvc -emit-llvm -std=c++1y -fno-threadsafe-statics -fms-extensions -O0 -o - %s -w -fms-compatibility-version=19.00 | FileCheck --check-prefix=MSC --check-prefix=M64 -check-prefix=MSVC2015 -check-prefix=M64MSVC2015 %s<br class="">// RUN: %clang_cc1 -triple x86_64-windows-msvc -emit-llvm -std=c++1y -fno-threadsafe-statics -fms-extensions -O0 -o - %s -w -fms-compatibility-version=18.00 | FileCheck --check-prefix=MSC --check-prefix=M64 -check-prefix=MSVC2013 -check-prefix=M64MSVC2013 %s<br class=""><br class="">Modified: cfe/trunk/test/CodeGenCXX/dllimport-rtti.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/dllimport-rtti.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/dllimport-rtti.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenCXX/dllimport-rtti.cpp (original)<br class="">+++ cfe/trunk/test/CodeGenCXX/dllimport-rtti.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,5 +1,5 @@<br class="">-// RUN: %clang_cc1 -triple i686-windows-msvc -emit-llvm -std=c++1y -fms-extensions -O1 -disable-llvm-optzns -o - %s | FileCheck %s --check-prefix=MSVC<br class="">-// RUN: %clang_cc1 -triple i686-windows-gnu  -emit-llvm -std=c++1y -fms-extensions -O1 -disable-llvm-optzns -o - %s | FileCheck %s --check-prefix=GNU<br class="">+// RUN: %clang_cc1 -triple i686-windows-msvc -emit-llvm -std=c++1y -fms-extensions -O1 -disable-llvm-passes -o - %s | FileCheck %s --check-prefix=MSVC<br class="">+// RUN: %clang_cc1 -triple i686-windows-gnu  -emit-llvm -std=c++1y -fms-extensions -O1 -disable-llvm-passes -o - %s | FileCheck %s --check-prefix=GNU<br class=""><br class="">struct __declspec(dllimport) S {<br class="">  virtual void f() {}<br class=""><br class="">Modified: cfe/trunk/test/CodeGenCXX/dllimport.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/dllimport.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/dllimport.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenCXX/dllimport.cpp (original)<br class="">+++ cfe/trunk/test/CodeGenCXX/dllimport.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -2,8 +2,8 @@<br class="">// RUN: %clang_cc1 -triple x86_64-windows-msvc -fno-rtti -fno-threadsafe-statics -fms-extensions -emit-llvm -std=c++1y -O0 -o - %s -DMSABI -w | FileCheck --check-prefix=MSC --check-prefix=M64 %s<br class="">// RUN: %clang_cc1 -triple i686-windows-gnu    -fno-rtti -fno-threadsafe-statics -fms-extensions -emit-llvm -std=c++1y -O0 -o - %s -w | FileCheck --check-prefix=GNU --check-prefix=G32 %s<br class="">// RUN: %clang_cc1 -triple x86_64-windows-gnu  -fno-rtti -fno-threadsafe-statics -fms-extensions -emit-llvm -std=c++1y -O0 -o - %s         -w | FileCheck --check-prefix=GNU --check-prefix=G64 %s<br class="">-// RUN: %clang_cc1 -triple i686-windows-msvc   -fno-rtti -fno-threadsafe-statics -fms-extensions -fms-compatibility-version=18.00 -emit-llvm -std=c++1y -O1 -disable-llvm-optzns -o - %s -DMSABI -w | FileCheck --check-prefix=MO1 --check-prefix=M18 %s<br class="">-// RUN: %clang_cc1 -triple i686-windows-msvc   -fno-rtti -fno-threadsafe-statics -fms-extensions -fms-compatibility-version=19.00 -emit-llvm -std=c++1y -O1 -disable-llvm-optzns -o - %s -DMSABI -w | FileCheck --check-prefix=MO1 --check-prefix=M19 %s<br class="">+// RUN: %clang_cc1 -triple i686-windows-msvc   -fno-rtti -fno-threadsafe-statics -fms-extensions -fms-compatibility-version=18.00 -emit-llvm -std=c++1y -O1 -disable-llvm-passes -o - %s -DMSABI -w | FileCheck --check-prefix=MO1 --check-prefix=M18 %s<br class="">+// RUN: %clang_cc1 -triple i686-windows-msvc   -fno-rtti -fno-threadsafe-statics -fms-extensions -fms-compatibility-version=19.00 -emit-llvm -std=c++1y -O1 -disable-llvm-passes -o - %s -DMSABI -w | FileCheck --check-prefix=MO1 --check-prefix=M19 %s<br class="">// RUN: %clang_cc1 -triple i686-windows-gnu    -fno-rtti -fno-threadsafe-statics -fms-extensions -emit-llvm -std=c++1y -O1 -o - %s -w | FileCheck --check-prefix=GO1 %s<br class=""><br class="">// CHECK-NOT doesn't play nice with CHECK-DAG, so use separate run lines.<br class=""><br class="">Modified: cfe/trunk/test/CodeGenCXX/exceptions-seh.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/exceptions-seh.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/exceptions-seh.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenCXX/exceptions-seh.cpp (original)<br class="">+++ cfe/trunk/test/CodeGenCXX/exceptions-seh.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -2,7 +2,7 @@<br class="">// RUN:         -o - -mconstructor-aliases -fcxx-exceptions -fexceptions | \<br class="">// RUN:         FileCheck %s --check-prefix=CHECK --check-prefix=CXXEH<br class="">// RUN: %clang_cc1 -std=c++11 -fblocks -fms-extensions %s -triple=x86_64-windows-msvc -emit-llvm \<br class="">-// RUN:         -o - -mconstructor-aliases -O1 -disable-llvm-optzns | \<br class="">+// RUN:         -o - -mconstructor-aliases -O1 -disable-llvm-passes | \<br class="">// RUN:         FileCheck %s --check-prefix=CHECK --check-prefix=NOCXX<br class=""><br class="">extern "C" unsigned long _exception_code();<br class=""><br class="">Modified: cfe/trunk/test/CodeGenCXX/explicit-instantiation.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/explicit-instantiation.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/explicit-instantiation.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenCXX/explicit-instantiation.cpp (original)<br class="">+++ cfe/trunk/test/CodeGenCXX/explicit-instantiation.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,5 +1,5 @@<br class="">// RUN: %clang_cc1 -emit-llvm -triple i686-pc-linux-gnu -std=c++1y -o - %s | FileCheck %s --check-prefix=CHECK --check-prefix=CHECK-NO-OPT<br class="">-// RUN: %clang_cc1 -emit-llvm -triple i686-pc-linux-gnu -std=c++1y -O3 -disable-llvm-optzns -o - %s | FileCheck %s --check-prefix=CHECK --check-prefix=CHECK-OPT<br class="">+// RUN: %clang_cc1 -emit-llvm -triple i686-pc-linux-gnu -std=c++1y -O3 -disable-llvm-passes -o - %s | FileCheck %s --check-prefix=CHECK --check-prefix=CHECK-OPT<br class="">// RUN: %clang_cc1 -emit-llvm -triple i686-pc-win32 -std=c++1y -o - %s | FileCheck %s --check-prefix=CHECK-MS<br class=""><br class="">// This check logically is attached to 'template int S<int>::i;' below.<br class=""><br class="">Modified: cfe/trunk/test/CodeGenCXX/inline-hint.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/inline-hint.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/inline-hint.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenCXX/inline-hint.cpp (original)<br class="">+++ cfe/trunk/test/CodeGenCXX/inline-hint.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,6 +1,6 @@<br class="">-// RUN: %clang_cc1 %s -std=c++11 -triple=x86_64-linux -finline-functions -emit-llvm -disable-llvm-optzns -o - | FileCheck %s --check-prefix=CHECK --check-prefix=SUITABLE<br class="">-// RUN: %clang_cc1 %s -std=c++11 -triple=x86_64-linux -finline-hint-functions -emit-llvm -disable-llvm-optzns -o - | FileCheck %s --check-prefix=CHECK --check-prefix=HINTED<br class="">-// RUN: %clang_cc1 %s -std=c++11 -triple=x86_64-linux -fno-inline -emit-llvm -disable-llvm-optzns -o - | FileCheck %s --check-prefix=CHECK --check-prefix=NOINLINE<br class="">+// RUN: %clang_cc1 %s -std=c++11 -triple=x86_64-linux -finline-functions -emit-llvm -disable-llvm-passes -o - | FileCheck %s --check-prefix=CHECK --check-prefix=SUITABLE<br class="">+// RUN: %clang_cc1 %s -std=c++11 -triple=x86_64-linux -finline-hint-functions -emit-llvm -disable-llvm-passes -o - | FileCheck %s --check-prefix=CHECK --check-prefix=HINTED<br class="">+// RUN: %clang_cc1 %s -std=c++11 -triple=x86_64-linux -fno-inline -emit-llvm -disable-llvm-passes -o - | FileCheck %s --check-prefix=CHECK --check-prefix=NOINLINE<br class=""><br class="">// Force non-trivial implicit constructors/destructors/operators for B by having explicit ones for A<br class="">struct A {<br class=""><br class="">Modified: cfe/trunk/test/CodeGenCXX/invariant.group-for-vptrs.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/invariant.group-for-vptrs.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/invariant.group-for-vptrs.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenCXX/invariant.group-for-vptrs.cpp (original)<br class="">+++ cfe/trunk/test/CodeGenCXX/invariant.group-for-vptrs.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,4 +1,4 @@<br class="">-// RUN: %clang_cc1 -triple=x86_64-pc-linux-gnu -emit-llvm %s -fstrict-vtable-pointers -O1 -o - -disable-llvm-optzns | FileCheck %s<br class="">+// RUN: %clang_cc1 -triple=x86_64-pc-linux-gnu -emit-llvm %s -fstrict-vtable-pointers -O1 -o - -disable-llvm-passes | FileCheck %s<br class=""><br class="">struct A {<br class="">  virtual void foo();<br class=""><br class="">Modified: cfe/trunk/test/CodeGenCXX/linkage.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/linkage.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/linkage.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenCXX/linkage.cpp (original)<br class="">+++ cfe/trunk/test/CodeGenCXX/linkage.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,4 +1,4 @@<br class="">-// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -std=c++11 -O1 -disable-llvm-optzns %s -o - | FileCheck %s<br class="">+// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -std=c++11 -O1 -disable-llvm-passes %s -o - | FileCheck %s<br class=""><br class="">namespace test1 {<br class="">  // CHECK-DAG: define linkonce_odr void @_ZN5test11fIZNS_1gEvE1SEEvT_(<br class=""><br class="">Modified: cfe/trunk/test/CodeGenCXX/microsoft-abi-eh-catch.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/microsoft-abi-eh-catch.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/microsoft-abi-eh-catch.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenCXX/microsoft-abi-eh-catch.cpp (original)<br class="">+++ cfe/trunk/test/CodeGenCXX/microsoft-abi-eh-catch.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,6 +1,6 @@<br class="">// RUN: %clang_cc1 -std=c++11 -emit-llvm %s -o - -triple=x86_64-pc-windows-msvc \<br class="">// RUN:     -mconstructor-aliases -fexceptions -fcxx-exceptions \<br class="">-// RUN:     -O1 -disable-llvm-optzns \<br class="">+// RUN:     -O1 -disable-llvm-passes \<br class="">// RUN:     | FileCheck -check-prefix WIN64 %s<br class=""><br class="">extern "C" void might_throw();<br class=""><br class="">Modified: cfe/trunk/test/CodeGenCXX/microsoft-abi-eh-cleanups.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/microsoft-abi-eh-cleanups.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/microsoft-abi-eh-cleanups.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenCXX/microsoft-abi-eh-cleanups.cpp (original)<br class="">+++ cfe/trunk/test/CodeGenCXX/microsoft-abi-eh-cleanups.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,5 +1,5 @@<br class="">// RUN: %clang_cc1 -std=c++11 -emit-llvm %s -o - -triple=i386-pc-win32 -mconstructor-aliases -fexceptions -fcxx-exceptions -fno-rtti | FileCheck -check-prefix WIN32 -check-prefix WIN32-O0 %s<br class="">-// RUN: %clang_cc1 -std=c++11 -emit-llvm -O3 -disable-llvm-optzns %s -o - -triple=i386-pc-win32 -mconstructor-aliases -fexceptions -fcxx-exceptions -fno-rtti | FileCheck -check-prefix WIN32 -check-prefix WIN32-O3 -check-prefix WIN32-LIFETIME %s<br class="">+// RUN: %clang_cc1 -std=c++11 -emit-llvm -O3 -disable-llvm-passes %s -o - -triple=i386-pc-win32 -mconstructor-aliases -fexceptions -fcxx-exceptions -fno-rtti | FileCheck -check-prefix WIN32 -check-prefix WIN32-O3 -check-prefix WIN32-LIFETIME %s<br class=""><br class="">struct A {<br class="">  A();<br class=""><br class="">Modified: cfe/trunk/test/CodeGenCXX/microsoft-abi-extern-template.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/microsoft-abi-extern-template.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/microsoft-abi-extern-template.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenCXX/microsoft-abi-extern-template.cpp (original)<br class="">+++ cfe/trunk/test/CodeGenCXX/microsoft-abi-extern-template.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,4 +1,4 @@<br class="">-// RUN: %clang_cc1 -fno-rtti-data -O1 -disable-llvm-optzns %s -emit-llvm -o - -triple x86_64-windows-msvc | FileCheck %s<br class="">+// RUN: %clang_cc1 -fno-rtti-data -O1 -disable-llvm-passes %s -emit-llvm -o - -triple x86_64-windows-msvc | FileCheck %s<br class=""><br class="">// Even though Foo<int> has an extern template declaration, we have to emit our<br class="">// own copy the vftable when emitting the available externally constructor.<br class=""><br class="">Modified: cfe/trunk/test/CodeGenCXX/microsoft-abi-structors-alias.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/microsoft-abi-structors-alias.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/microsoft-abi-structors-alias.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenCXX/microsoft-abi-structors-alias.cpp (original)<br class="">+++ cfe/trunk/test/CodeGenCXX/microsoft-abi-structors-alias.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,4 +1,4 @@<br class="">-// RUN: %clang_cc1 -emit-llvm %s -o - -triple=i386-pc-win32 -fno-rtti -mconstructor-aliases -O1 -disable-llvm-optzns | FileCheck %s<br class="">+// RUN: %clang_cc1 -emit-llvm %s -o - -triple=i386-pc-win32 -fno-rtti -mconstructor-aliases -O1 -disable-llvm-passes | FileCheck %s<br class=""><br class="">namespace test1 {<br class="">template <typename T> class A {<br class=""><br class="">Modified: cfe/trunk/test/CodeGenCXX/microsoft-abi-vftables.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/microsoft-abi-vftables.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/microsoft-abi-vftables.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenCXX/microsoft-abi-vftables.cpp (original)<br class="">+++ cfe/trunk/test/CodeGenCXX/microsoft-abi-vftables.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,5 +1,5 @@<br class="">-// RUN: %clang_cc1 %s -fno-rtti -triple=i386-pc-win32 -fms-extensions -emit-llvm -o - -O1 -disable-llvm-optzns | FileCheck %s -check-prefix=NO-RTTI<br class="">-// RUN: %clang_cc1 %s -triple=i386-pc-win32 -fms-extensions -emit-llvm -o - -O1 -disable-llvm-optzns | FileCheck %s -check-prefix=RTTI<br class="">+// RUN: %clang_cc1 %s -fno-rtti -triple=i386-pc-win32 -fms-extensions -emit-llvm -o - -O1 -disable-llvm-passes | FileCheck %s -check-prefix=NO-RTTI<br class="">+// RUN: %clang_cc1 %s -triple=i386-pc-win32 -fms-extensions -emit-llvm -o - -O1 -disable-llvm-passes | FileCheck %s -check-prefix=RTTI<br class=""><br class="">// RTTI-DAG: $"\01??_7S@@6B@" = comdat largest<br class="">// RTTI-DAG: $"\01??_7V@@6B@" = comdat largest<br class=""><br class="">Modified: cfe/trunk/test/CodeGenCXX/pr24097.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/pr24097.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/pr24097.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenCXX/pr24097.cpp (original)<br class="">+++ cfe/trunk/test/CodeGenCXX/pr24097.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,4 +1,4 @@<br class="">-// RUN: %clang_cc1 %s -triple=x86_64-pc-linux -fvisibility hidden -emit-llvm -O1 -disable-llvm-optzns -o - | FileCheck %s<br class="">+// RUN: %clang_cc1 %s -triple=x86_64-pc-linux -fvisibility hidden -emit-llvm -O1 -disable-llvm-passes -o - | FileCheck %s<br class=""><br class="">struct Filter {<br class="">  virtual void Foo();<br class=""><br class="">Modified: cfe/trunk/test/CodeGenCXX/sanitize-dtor-bit-field.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/sanitize-dtor-bit-field.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/sanitize-dtor-bit-field.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenCXX/sanitize-dtor-bit-field.cpp (original)<br class="">+++ cfe/trunk/test/CodeGenCXX/sanitize-dtor-bit-field.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,6 +1,6 @@<br class="">// Test -fsanitize-memory-use-after-dtor<br class="">-// RUN: %clang_cc1 -O0 -fsanitize=memory -fsanitize-memory-use-after-dtor -disable-llvm-optzns -std=c++11 -triple=x86_64-pc-linux -emit-llvm -o - %s | FileCheck %s<br class="">-// RUN: %clang_cc1 -O1 -fsanitize=memory -fsanitize-memory-use-after-dtor -disable-llvm-optzns -std=c++11 -triple=x86_64-pc-linux -emit-llvm -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -O0 -fsanitize=memory -fsanitize-memory-use-after-dtor -disable-llvm-passes -std=c++11 -triple=x86_64-pc-linux -emit-llvm -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -O1 -fsanitize=memory -fsanitize-memory-use-after-dtor -disable-llvm-passes -std=c++11 -triple=x86_64-pc-linux -emit-llvm -o - %s | FileCheck %s<br class=""><br class="">// 24 bytes total<br class="">struct Packed {<br class=""><br class="">Modified: cfe/trunk/test/CodeGenCXX/sanitize-dtor-derived-class.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/sanitize-dtor-derived-class.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/sanitize-dtor-derived-class.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenCXX/sanitize-dtor-derived-class.cpp (original)<br class="">+++ cfe/trunk/test/CodeGenCXX/sanitize-dtor-derived-class.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,5 +1,5 @@<br class="">-// RUN: %clang_cc1 -fsanitize=memory -fsanitize-memory-use-after-dtor -disable-llvm-optzns -std=c++11 -triple=x86_64-pc-linux -emit-llvm -o - %s | FileCheck %s<br class="">-// RUN: %clang_cc1 -O1 -fsanitize=memory -fsanitize-memory-use-after-dtor -disable-llvm-optzns -std=c++11 -triple=x86_64-pc-linux -emit-llvm -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -fsanitize=memory -fsanitize-memory-use-after-dtor -disable-llvm-passes -std=c++11 -triple=x86_64-pc-linux -emit-llvm -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -O1 -fsanitize=memory -fsanitize-memory-use-after-dtor -disable-llvm-passes -std=c++11 -triple=x86_64-pc-linux -emit-llvm -o - %s | FileCheck %s<br class=""><br class="">// Base dtor poisons members<br class="">// Complete dtor poisons vtable ptr after destroying members and<br class=""><br class="">Modified: cfe/trunk/test/CodeGenCXX/sanitize-dtor-tail-call.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/sanitize-dtor-tail-call.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/sanitize-dtor-tail-call.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenCXX/sanitize-dtor-tail-call.cpp (original)<br class="">+++ cfe/trunk/test/CodeGenCXX/sanitize-dtor-tail-call.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,6 +1,6 @@<br class="">// Test -fsanitize-memory-use-after-dtor<br class="">-// RUN: %clang_cc1 -fsanitize=memory -fsanitize-memory-use-after-dtor -disable-llvm-optzns -std=c++11 -triple=x86_64-pc-linux -emit-llvm -o - %s | FileCheck %s<br class="">-// RUN: %clang_cc1 -O1 -fsanitize=memory -fsanitize-memory-use-after-dtor -disable-llvm-optzns -std=c++11 -triple=x86_64-pc-linux -emit-llvm -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -fsanitize=memory -fsanitize-memory-use-after-dtor -disable-llvm-passes -std=c++11 -triple=x86_64-pc-linux -emit-llvm -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -O1 -fsanitize=memory -fsanitize-memory-use-after-dtor -disable-llvm-passes -std=c++11 -triple=x86_64-pc-linux -emit-llvm -o - %s | FileCheck %s<br class=""><br class="">struct Simple {<br class="">  int x_;<br class=""><br class="">Modified: cfe/trunk/test/CodeGenCXX/sanitize-dtor-trivial.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/sanitize-dtor-trivial.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/sanitize-dtor-trivial.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenCXX/sanitize-dtor-trivial.cpp (original)<br class="">+++ cfe/trunk/test/CodeGenCXX/sanitize-dtor-trivial.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,6 +1,6 @@<br class="">// Test -fsanitize-memory-use-after-dtor<br class="">-// RUN: %clang_cc1 -O0 -fsanitize=memory -fsanitize-memory-use-after-dtor -disable-llvm-optzns -std=c++11 -triple=x86_64-pc-linux -emit-llvm -o - %s | FileCheck %s<br class="">-// RUN: %clang_cc1 -O1 -fsanitize=memory -fsanitize-memory-use-after-dtor -disable-llvm-optzns -std=c++11 -triple=x86_64-pc-linux -emit-llvm -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -O0 -fsanitize=memory -fsanitize-memory-use-after-dtor -disable-llvm-passes -std=c++11 -triple=x86_64-pc-linux -emit-llvm -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -O1 -fsanitize=memory -fsanitize-memory-use-after-dtor -disable-llvm-passes -std=c++11 -triple=x86_64-pc-linux -emit-llvm -o - %s | FileCheck %s<br class=""><br class="">// TODO Success pending on resolution of issue:<br class="">//    <a href="https://github.com/google/sanitizers/issues/596" class="">https://github.com/google/sanitizers/issues/596</a><br class=""><br class="">Modified: cfe/trunk/test/CodeGenCXX/sanitize-dtor-vtable.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/sanitize-dtor-vtable.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/sanitize-dtor-vtable.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenCXX/sanitize-dtor-vtable.cpp (original)<br class="">+++ cfe/trunk/test/CodeGenCXX/sanitize-dtor-vtable.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,5 +1,5 @@<br class="">-// RUN: %clang_cc1 -O0 -fsanitize=memory -fsanitize-memory-use-after-dtor -disable-llvm-optzns -std=c++11 -triple=x86_64-pc-linux -emit-llvm -o - %s | FileCheck %s<br class="">-// RUN: %clang_cc1 -O1 -fsanitize=memory -fsanitize-memory-use-after-dtor -disable-llvm-optzns -std=c++11 -triple=x86_64-pc-linux -emit-llvm -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -O0 -fsanitize=memory -fsanitize-memory-use-after-dtor -disable-llvm-passes -std=c++11 -triple=x86_64-pc-linux -emit-llvm -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -O1 -fsanitize=memory -fsanitize-memory-use-after-dtor -disable-llvm-passes -std=c++11 -triple=x86_64-pc-linux -emit-llvm -o - %s | FileCheck %s<br class=""><br class="">class A {<br class=""> public:<br class=""><br class="">Modified: cfe/trunk/test/CodeGenCXX/stack-reuse-miscompile.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/stack-reuse-miscompile.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/stack-reuse-miscompile.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenCXX/stack-reuse-miscompile.cpp (original)<br class="">+++ cfe/trunk/test/CodeGenCXX/stack-reuse-miscompile.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,4 +1,4 @@<br class="">-// RUN: %clang_cc1 -triple armv7l-unknown-linux-gnueabihf -emit-llvm -O1 -disable-llvm-optzns -std=c++03 %s -o - | FileCheck %s<br class="">+// RUN: %clang_cc1 -triple armv7l-unknown-linux-gnueabihf -emit-llvm -O1 -disable-llvm-passes -std=c++03 %s -o - | FileCheck %s<br class=""><br class="">// This test should not to generate llvm.lifetime.start/llvm.lifetime.end for<br class="">// f function because all temporary objects in this function are used for the<br class=""><br class="">Modified: cfe/trunk/test/CodeGenCXX/strict-vtable-pointers.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/strict-vtable-pointers.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/strict-vtable-pointers.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenCXX/strict-vtable-pointers.cpp (original)<br class="">+++ cfe/trunk/test/CodeGenCXX/strict-vtable-pointers.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,4 +1,4 @@<br class="">-// RUN: %clang_cc1 %s -I%S -triple=x86_64-apple-darwin10 -fstrict-vtable-pointers -disable-llvm-optzns -O2 -emit-llvm -o %t.ll<br class="">+// RUN: %clang_cc1 %s -I%S -triple=x86_64-apple-darwin10 -fstrict-vtable-pointers -disable-llvm-passes -O2 -emit-llvm -o %t.ll<br class="">// RUN: FileCheck --check-prefix=CHECK-CTORS %s < %t.ll<br class="">// RUN: FileCheck --check-prefix=CHECK-NEW %s < %t.ll<br class="">// RUN: FileCheck --check-prefix=CHECK-DTORS %s < %t.ll<br class=""><br class="">Modified: cfe/trunk/test/CodeGenCXX/template-instantiation.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/template-instantiation.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/template-instantiation.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenCXX/template-instantiation.cpp (original)<br class="">+++ cfe/trunk/test/CodeGenCXX/template-instantiation.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,4 +1,4 @@<br class="">-// RUN: %clang_cc1 %s -O1 -disable-llvm-optzns -triple=x86_64-apple-darwin10 -emit-llvm -o - | FileCheck %s<br class="">+// RUN: %clang_cc1 %s -O1 -disable-llvm-passes -triple=x86_64-apple-darwin10 -emit-llvm -o - | FileCheck %s<br class=""><br class="">// CHECK: @_ZN7PR100011xE = global<br class="">// CHECK-NOT: @_ZN7PR100014kBarE = external global i32<br class=""><br class="">Modified: cfe/trunk/test/CodeGenCXX/thunks.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/thunks.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/thunks.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenCXX/thunks.cpp (original)<br class="">+++ cfe/trunk/test/CodeGenCXX/thunks.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,5 +1,5 @@<br class="">// RUN: %clang_cc1 %s -triple=x86_64-pc-linux-gnu -munwind-tables -emit-llvm -o %t<br class="">-// RUN: %clang_cc1 %s -triple=x86_64-pc-linux-gnu -munwind-tables -emit-llvm -o %t.opt -O1 -disable-llvm-optzns<br class="">+// RUN: %clang_cc1 %s -triple=x86_64-pc-linux-gnu -munwind-tables -emit-llvm -o %t.opt -O1 -disable-llvm-passes<br class="">// RUN: FileCheck %s < %t<br class="">// RUN: FileCheck %s < %t.opt<br class="">// RUN: FileCheck --check-prefix=CHECK-NONOPT %s < %t<br class=""><br class="">Modified: cfe/trunk/test/CodeGenCXX/virtual-destructor-calls.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/virtual-destructor-calls.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/virtual-destructor-calls.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenCXX/virtual-destructor-calls.cpp (original)<br class="">+++ cfe/trunk/test/CodeGenCXX/virtual-destructor-calls.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,4 +1,4 @@<br class="">-// RUN: %clang_cc1 -emit-llvm %s -o - -triple=x86_64-apple-darwin10 -mconstructor-aliases -O1 -disable-llvm-optzns | FileCheck %s<br class="">+// RUN: %clang_cc1 -emit-llvm %s -o - -triple=x86_64-apple-darwin10 -mconstructor-aliases -O1 -disable-llvm-passes | FileCheck %s<br class=""><br class="">struct Member {<br class="">  ~Member();<br class=""><br class="">Modified: cfe/trunk/test/CodeGenCXX/visibility-inlines-hidden.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/visibility-inlines-hidden.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/visibility-inlines-hidden.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenCXX/visibility-inlines-hidden.cpp (original)<br class="">+++ cfe/trunk/test/CodeGenCXX/visibility-inlines-hidden.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,4 +1,4 @@<br class="">-// RUN: %clang_cc1 -triple i386-unknown-unknown -std=c++11 -fvisibility-inlines-hidden -emit-llvm -o - %s -O2 -disable-llvm-optzns | FileCheck %s<br class="">+// RUN: %clang_cc1 -triple i386-unknown-unknown -std=c++11 -fvisibility-inlines-hidden -emit-llvm -o - %s -O2 -disable-llvm-passes | FileCheck %s<br class=""><br class="">// The trickery with optimization in the run line is to get IR<br class="">// generation to emit available_externally function bodies, but not<br class=""><br class="">Modified: cfe/trunk/test/CodeGenCXX/vtable-assume-load.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/vtable-assume-load.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/vtable-assume-load.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenCXX/vtable-assume-load.cpp (original)<br class="">+++ cfe/trunk/test/CodeGenCXX/vtable-assume-load.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,5 +1,5 @@<br class="">-// RUN: %clang_cc1 %s -triple x86_64-apple-darwin10 -emit-llvm -o %t.ll -O1 -disable-llvm-optzns -fms-extensions -fstrict-vtable-pointers<br class="">-// RUN: %clang_cc1 %s -triple i686-pc-win32 -emit-llvm -o %t.ms.ll -O1 -disable-llvm-optzns -fms-extensions -fstrict-vtable-pointers<br class="">+// RUN: %clang_cc1 %s -triple x86_64-apple-darwin10 -emit-llvm -o %t.ll -O1 -disable-llvm-passes -fms-extensions -fstrict-vtable-pointers<br class="">+// RUN: %clang_cc1 %s -triple i686-pc-win32 -emit-llvm -o %t.ms.ll -O1 -disable-llvm-passes -fms-extensions -fstrict-vtable-pointers<br class="">// FIXME: Assume load should not require -fstrict-vtable-pointers<br class=""><br class="">// RUN: FileCheck --check-prefix=CHECK1 --input-file=%t.ll %s<br class=""><br class="">Modified: cfe/trunk/test/CodeGenCXX/vtable-available-externally.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/vtable-available-externally.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/vtable-available-externally.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenCXX/vtable-available-externally.cpp (original)<br class="">+++ cfe/trunk/test/CodeGenCXX/vtable-available-externally.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,5 +1,5 @@<br class="">// RUN: %clang_cc1 %s -I%S -triple=x86_64-apple-darwin10 -emit-llvm -o %t<br class="">-// RUN: %clang_cc1 %s -I%S -triple=x86_64-apple-darwin10 -O2 -disable-llvm-optzns -emit-llvm -o %t.opt<br class="">+// RUN: %clang_cc1 %s -I%S -triple=x86_64-apple-darwin10 -O2 -disable-llvm-passes -emit-llvm -o %t.opt<br class="">// RUN: FileCheck --check-prefix=CHECK-TEST1 %s < %t<br class="">// RUN: FileCheck --check-prefix=CHECK-TEST2 %s < %t<br class="">// RUN: FileCheck --check-prefix=CHECK-TEST5 %s < %t<br class=""><br class="">Modified: cfe/trunk/test/CodeGenCXX/vtable-linkage.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/vtable-linkage.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/vtable-linkage.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenCXX/vtable-linkage.cpp (original)<br class="">+++ cfe/trunk/test/CodeGenCXX/vtable-linkage.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,7 +1,7 @@<br class="">// RUN: %clang_cc1 %s -triple=x86_64-pc-linux -emit-llvm -o %t<br class="">// RUN: %clang_cc1 %s -triple=x86_64-pc-linux -emit-llvm -std=c++03 -o %t.03<br class="">// RUN: %clang_cc1 %s -triple=x86_64-pc-linux -emit-llvm -std=c++11 -o %t.11<br class="">-// RUN: %clang_cc1 %s -triple=x86_64-apple-darwin10 -disable-llvm-optzns -O3 -emit-llvm -o %t.opt<br class="">+// RUN: %clang_cc1 %s -triple=x86_64-apple-darwin10 -disable-llvm-passes -O3 -emit-llvm -o %t.opt<br class="">// RUN: FileCheck %s < %t<br class="">// RUN: FileCheck %s < %t.03<br class="">// RUN: FileCheck %s < %t.11<br class=""><br class="">Modified: cfe/trunk/test/CodeGenObjC/arc-blocks.m<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/arc-blocks.m?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/arc-blocks.m?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenObjC/arc-blocks.m (original)<br class="">+++ cfe/trunk/test/CodeGenObjC/arc-blocks.m Thu Dec 22 18:23:01 2016<br class="">@@ -1,4 +1,4 @@<br class="">-// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fblocks -fobjc-arc -fobjc-runtime-has-weak -O2 -disable-llvm-optzns -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fblocks -fobjc-arc -fobjc-runtime-has-weak -O2 -disable-llvm-passes -o - %s | FileCheck %s<br class="">// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fblocks -fobjc-arc -fobjc-runtime-has-weak -o - %s | FileCheck -check-prefix=CHECK-UNOPT %s<br class=""><br class="">// This shouldn't crash.<br class=""><br class="">Modified: cfe/trunk/test/CodeGenObjC/arc-bridged-cast.m<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/arc-bridged-cast.m?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/arc-bridged-cast.m?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenObjC/arc-bridged-cast.m (original)<br class="">+++ cfe/trunk/test/CodeGenObjC/arc-bridged-cast.m Thu Dec 22 18:23:01 2016<br class="">@@ -1,4 +1,4 @@<br class="">-// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fblocks -fobjc-arc -O2 -disable-llvm-optzns -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fblocks -fobjc-arc -O2 -disable-llvm-passes -o - %s | FileCheck %s<br class=""><br class="">typedef const void *CFTypeRef;<br class="">typedef const struct __CFString *CFStringRef;<br class=""><br class="">Modified: cfe/trunk/test/CodeGenObjC/arc-literals.m<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/arc-literals.m?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/arc-literals.m?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenObjC/arc-literals.m (original)<br class="">+++ cfe/trunk/test/CodeGenObjC/arc-literals.m Thu Dec 22 18:23:01 2016<br class="">@@ -1,4 +1,4 @@<br class="">-// RUN: %clang_cc1 -I %S/Inputs -triple x86_64-apple-darwin10 -emit-llvm -fblocks -fobjc-arc -fobjc-runtime-has-weak -O2 -disable-llvm-optzns -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -I %S/Inputs -triple x86_64-apple-darwin10 -emit-llvm -fblocks -fobjc-arc -fobjc-runtime-has-weak -O2 -disable-llvm-passes -o - %s | FileCheck %s<br class=""><br class="">#include "literal-support.h"<br class=""><br class=""><br class="">Modified: cfe/trunk/test/CodeGenObjC/arc-no-arc-exceptions.m<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/arc-no-arc-exceptions.m?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/arc-no-arc-exceptions.m?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenObjC/arc-no-arc-exceptions.m (original)<br class="">+++ cfe/trunk/test/CodeGenObjC/arc-no-arc-exceptions.m Thu Dec 22 18:23:01 2016<br class="">@@ -1,6 +1,6 @@<br class="">-// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fobjc-arc -fblocks -fexceptions -fobjc-exceptions -O2 -disable-llvm-optzns -o - %s | FileCheck %s<br class="">-// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fobjc-arc -fblocks -fexceptions -fobjc-exceptions -disable-llvm-optzns -o - %s | FileCheck -check-prefix=NO-METADATA %s<br class="">-// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fobjc-arc -fblocks -fexceptions -fobjc-exceptions -O2 -disable-llvm-optzns -o - %s -fobjc-arc-exceptions | FileCheck -check-prefix=NO-METADATA %s<br class="">+// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fobjc-arc -fblocks -fexceptions -fobjc-exceptions -O2 -disable-llvm-passes -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fobjc-arc -fblocks -fexceptions -fobjc-exceptions -disable-llvm-passes -o - %s | FileCheck -check-prefix=NO-METADATA %s<br class="">+// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fobjc-arc -fblocks -fexceptions -fobjc-exceptions -O2 -disable-llvm-passes -o - %s -fobjc-arc-exceptions | FileCheck -check-prefix=NO-METADATA %s<br class=""><br class="">// The front-end should emit clang.arc.no_objc_arc_exceptions in -fobjc-arc-exceptions<br class="">// mode when optimization is enabled, and not otherwise.<br class=""><br class="">Modified: cfe/trunk/test/CodeGenObjC/arc-precise-lifetime.m<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/arc-precise-lifetime.m?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/arc-precise-lifetime.m?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenObjC/arc-precise-lifetime.m (original)<br class="">+++ cfe/trunk/test/CodeGenObjC/arc-precise-lifetime.m Thu Dec 22 18:23:01 2016<br class="">@@ -1,4 +1,4 @@<br class="">-// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fblocks -fobjc-arc -fobjc-runtime-has-weak -O2 -disable-llvm-optzns -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fblocks -fobjc-arc -fobjc-runtime-has-weak -O2 -disable-llvm-passes -o - %s | FileCheck %s<br class=""><br class="">#define PRECISE_LIFETIME __attribute__((objc_precise_lifetime))<br class=""><br class=""><br class="">Modified: cfe/trunk/test/CodeGenObjC/arc-ternary-op.m<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/arc-ternary-op.m?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/arc-ternary-op.m?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenObjC/arc-ternary-op.m (original)<br class="">+++ cfe/trunk/test/CodeGenObjC/arc-ternary-op.m Thu Dec 22 18:23:01 2016<br class="">@@ -1,4 +1,4 @@<br class="">-// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fblocks -fobjc-arc -fobjc-runtime-has-weak -O2 -disable-llvm-optzns -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fblocks -fobjc-arc -fobjc-runtime-has-weak -O2 -disable-llvm-passes -o - %s | FileCheck %s<br class=""><br class="">void test0(_Bool cond) {<br class="">  id test0_helper(void) __attribute__((ns_returns_retained));<br class=""><br class="">Modified: cfe/trunk/test/CodeGenObjC/arc-unsafeclaim.m<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/arc-unsafeclaim.m?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/arc-unsafeclaim.m?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenObjC/arc-unsafeclaim.m (original)<br class="">+++ cfe/trunk/test/CodeGenObjC/arc-unsafeclaim.m Thu Dec 22 18:23:01 2016<br class="">@@ -6,11 +6,11 @@<br class=""><br class="">//   Make sure it works on ARM.<br class="">// RUN: %clang_cc1 -triple arm64-apple-ios9 -fobjc-runtime=ios-9.0 -fobjc-arc -emit-llvm -o - %s | FileCheck %s -check-prefix=CHECK -check-prefix=CHECK-UNOPTIMIZED -check-prefix=CHECK-MARKED<br class="">-// RUN: %clang_cc1 -triple arm64-apple-ios9 -fobjc-runtime=ios-9.0 -fobjc-arc -O -disable-llvm-optzns -emit-llvm -o - %s | FileCheck %s -check-prefix=CHECK -check-prefix=CHECK-OPTIMIZED<br class="">+// RUN: %clang_cc1 -triple arm64-apple-ios9 -fobjc-runtime=ios-9.0 -fobjc-arc -O -disable-llvm-passes -emit-llvm -o - %s | FileCheck %s -check-prefix=CHECK -check-prefix=CHECK-OPTIMIZED<br class=""><br class="">//   Make sure it works on ARM64.<br class="">// RUN: %clang_cc1 -triple armv7-apple-ios9 -fobjc-runtime=ios-9.0 -fobjc-arc -emit-llvm -o - %s | FileCheck %s -check-prefix=CHECK -check-prefix=CHECK-UNOPTIMIZED -check-prefix=CHECK-MARKED<br class="">-// RUN: %clang_cc1 -triple armv7-apple-ios9 -fobjc-runtime=ios-9.0 -fobjc-arc -O -disable-llvm-optzns -emit-llvm -o - %s | FileCheck %s -check-prefix=CHECK -check-prefix=CHECK-OPTIMIZED<br class="">+// RUN: %clang_cc1 -triple armv7-apple-ios9 -fobjc-runtime=ios-9.0 -fobjc-arc -O -disable-llvm-passes -emit-llvm -o - %s | FileCheck %s -check-prefix=CHECK -check-prefix=CHECK-OPTIMIZED<br class=""><br class="">//   Make sure that it's implicitly disabled if the runtime version isn't high enough.<br class="">// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-runtime=macosx-10.10 -fobjc-arc -emit-llvm -o - %s | FileCheck %s -check-prefix=DISABLED<br class=""><br class="">Modified: cfe/trunk/test/CodeGenObjC/arc.m<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/arc.m?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/arc.m?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenObjC/arc.m (original)<br class="">+++ cfe/trunk/test/CodeGenObjC/arc.m Thu Dec 22 18:23:01 2016<br class="">@@ -1,4 +1,4 @@<br class="">-// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fblocks -fobjc-arc -fobjc-runtime-has-weak -O2 -disable-llvm-optzns -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fblocks -fobjc-arc -fobjc-runtime-has-weak -O2 -disable-llvm-passes -o - %s | FileCheck %s<br class="">// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fblocks -fobjc-arc -fobjc-runtime-has-weak -o - %s | FileCheck -check-prefix=CHECK-GLOBALS %s<br class=""><br class="">// <a href="rdar://13129783" class="">rdar://13129783</a>. Check both native/non-native arc platforms. Here we check<br class=""><br class="">Modified: cfe/trunk/test/CodeGenObjC/nsvalue-objc-boxable-ios-arc.m<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/nsvalue-objc-boxable-ios-arc.m?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/nsvalue-objc-boxable-ios-arc.m?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenObjC/nsvalue-objc-boxable-ios-arc.m (original)<br class="">+++ cfe/trunk/test/CodeGenObjC/nsvalue-objc-boxable-ios-arc.m Thu Dec 22 18:23:01 2016<br class="">@@ -1,4 +1,4 @@<br class="">-// RUN: %clang_cc1 -I %S/Inputs -triple armv7-apple-ios8.0.0 -emit-llvm -fobjc-arc -O2 -disable-llvm-optzns -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -I %S/Inputs -triple armv7-apple-ios8.0.0 -emit-llvm -fobjc-arc -O2 -disable-llvm-passes -o - %s | FileCheck %s<br class=""><br class="">#import "nsvalue-boxed-expressions-support.h"<br class=""><br class=""><br class="">Modified: cfe/trunk/test/CodeGenObjC/nsvalue-objc-boxable-ios.m<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/nsvalue-objc-boxable-ios.m?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/nsvalue-objc-boxable-ios.m?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenObjC/nsvalue-objc-boxable-ios.m (original)<br class="">+++ cfe/trunk/test/CodeGenObjC/nsvalue-objc-boxable-ios.m Thu Dec 22 18:23:01 2016<br class="">@@ -1,4 +1,4 @@<br class="">-// RUN: %clang_cc1 -I %S/Inputs -triple armv7-apple-ios8.0.0 -emit-llvm -O2 -disable-llvm-optzns -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -I %S/Inputs -triple armv7-apple-ios8.0.0 -emit-llvm -O2 -disable-llvm-passes -o - %s | FileCheck %s<br class=""><br class="">#import "nsvalue-boxed-expressions-support.h"<br class=""><br class=""><br class="">Modified: cfe/trunk/test/CodeGenObjC/nsvalue-objc-boxable-mac-arc.m<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/nsvalue-objc-boxable-mac-arc.m?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/nsvalue-objc-boxable-mac-arc.m?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenObjC/nsvalue-objc-boxable-mac-arc.m (original)<br class="">+++ cfe/trunk/test/CodeGenObjC/nsvalue-objc-boxable-mac-arc.m Thu Dec 22 18:23:01 2016<br class="">@@ -1,4 +1,4 @@<br class="">-// RUN: %clang_cc1 -I %S/Inputs -triple x86_64-apple-macosx -emit-llvm -fobjc-arc -O2 -disable-llvm-optzns -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -I %S/Inputs -triple x86_64-apple-macosx -emit-llvm -fobjc-arc -O2 -disable-llvm-passes -o - %s | FileCheck %s<br class=""><br class="">#import "nsvalue-boxed-expressions-support.h"<br class=""><br class=""><br class="">Modified: cfe/trunk/test/CodeGenObjC/nsvalue-objc-boxable-mac.m<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/nsvalue-objc-boxable-mac.m?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjC/nsvalue-objc-boxable-mac.m?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenObjC/nsvalue-objc-boxable-mac.m (original)<br class="">+++ cfe/trunk/test/CodeGenObjC/nsvalue-objc-boxable-mac.m Thu Dec 22 18:23:01 2016<br class="">@@ -1,4 +1,4 @@<br class="">-// RUN: %clang_cc1 -I %S/Inputs -triple x86_64-apple-macosx -emit-llvm -O2 -disable-llvm-optzns -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -I %S/Inputs -triple x86_64-apple-macosx -emit-llvm -O2 -disable-llvm-passes -o - %s | FileCheck %s<br class=""><br class="">#import "nsvalue-boxed-expressions-support.h"<br class=""><br class=""><br class="">Modified: cfe/trunk/test/CodeGenObjCXX/arc-globals.mm<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjCXX/arc-globals.mm?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjCXX/arc-globals.mm?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenObjCXX/arc-globals.mm (original)<br class="">+++ cfe/trunk/test/CodeGenObjCXX/arc-globals.mm Thu Dec 22 18:23:01 2016<br class="">@@ -1,4 +1,4 @@<br class="">-// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fblocks -fobjc-arc -O2 -disable-llvm-optzns -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fblocks -fobjc-arc -O2 -disable-llvm-passes -o - %s | FileCheck %s<br class=""><br class="">// Test that we're properly retaining lifetime-qualified pointers<br class="">// initialized statically and wrapping up those initialization in an<br class=""><br class="">Modified: cfe/trunk/test/CodeGenObjCXX/arc-move.mm<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjCXX/arc-move.mm?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjCXX/arc-move.mm?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenObjCXX/arc-move.mm (original)<br class="">+++ cfe/trunk/test/CodeGenObjCXX/arc-move.mm Thu Dec 22 18:23:01 2016<br class="">@@ -1,4 +1,4 @@<br class="">-// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fblocks -fobjc-arc -O2 -std=c++11 -disable-llvm-optzns -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fblocks -fobjc-arc -O2 -std=c++11 -disable-llvm-passes -o - %s | FileCheck %s<br class=""><br class="">// define void @_Z11simple_moveRU8__strongP11objc_objectS2_<br class="">void simple_move(__strong id &x, __strong id &y) {<br class=""><br class="">Modified: cfe/trunk/test/CodeGenObjCXX/arc-new-delete.mm<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjCXX/arc-new-delete.mm?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjCXX/arc-new-delete.mm?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenObjCXX/arc-new-delete.mm (original)<br class="">+++ cfe/trunk/test/CodeGenObjCXX/arc-new-delete.mm Thu Dec 22 18:23:01 2016<br class="">@@ -1,5 +1,5 @@<br class="">// RUN: %clang_cc1 -fobjc-arc -fobjc-runtime-has-weak -fblocks -triple x86_64-apple-darwin10.0.0 -emit-llvm -o - %s | FileCheck %s -check-prefix=CHECK -check-prefix=UNOPT<br class="">-// RUN: %clang_cc1 -fobjc-arc -fobjc-runtime-has-weak -fblocks -triple x86_64-apple-darwin10.0.0 -emit-llvm -o - %s -O -disable-llvm-optzns | FileCheck %s -check-prefix=CHECK -check-prefix=OPT<br class="">+// RUN: %clang_cc1 -fobjc-arc -fobjc-runtime-has-weak -fblocks -triple x86_64-apple-darwin10.0.0 -emit-llvm -o - %s -O -disable-llvm-passes | FileCheck %s -check-prefix=CHECK -check-prefix=OPT<br class=""><br class="">typedef __strong id strong_id;<br class="">typedef __weak id weak_id;<br class=""><br class="">Modified: cfe/trunk/test/CodeGenObjCXX/arc-references.mm<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjCXX/arc-references.mm?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjCXX/arc-references.mm?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenObjCXX/arc-references.mm (original)<br class="">+++ cfe/trunk/test/CodeGenObjCXX/arc-references.mm Thu Dec 22 18:23:01 2016<br class="">@@ -1,4 +1,4 @@<br class="">-// RUN: %clang_cc1 -std=c++11 -triple x86_64-apple-darwin10 -emit-llvm -fobjc-runtime-has-weak -fblocks -fobjc-arc -O2 -disable-llvm-optzns -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -std=c++11 -triple x86_64-apple-darwin10 -emit-llvm -fobjc-runtime-has-weak -fblocks -fobjc-arc -O2 -disable-llvm-passes -o - %s | FileCheck %s<br class=""><br class="">@interface A<br class="">@end<br class=""><br class="">Modified: cfe/trunk/test/CodeGenObjCXX/arc.mm<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjCXX/arc.mm?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjCXX/arc.mm?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenObjCXX/arc.mm (original)<br class="">+++ cfe/trunk/test/CodeGenObjCXX/arc.mm Thu Dec 22 18:23:01 2016<br class="">@@ -1,4 +1,4 @@<br class="">-// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fobjc-runtime-has-weak -fblocks -fobjc-arc -O2 -disable-llvm-optzns -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fobjc-runtime-has-weak -fblocks -fobjc-arc -O2 -disable-llvm-passes -o - %s | FileCheck %s<br class=""><br class="">struct NSFastEnumerationState;<br class="">@interface NSArray<br class=""><br class="">Modified: cfe/trunk/test/CodeGenObjCXX/destroy.mm<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjCXX/destroy.mm?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjCXX/destroy.mm?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenObjCXX/destroy.mm (original)<br class="">+++ cfe/trunk/test/CodeGenObjCXX/destroy.mm Thu Dec 22 18:23:01 2016<br class="">@@ -1,4 +1,4 @@<br class="">-// RUN: %clang_cc1 -std=c++11 -triple x86_64-apple-darwin10 -emit-llvm -fobjc-arc -disable-llvm-optzns -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -std=c++11 -triple x86_64-apple-darwin10 -emit-llvm -fobjc-arc -disable-llvm-passes -o - %s | FileCheck %s<br class="">// <a href="rdar://18249673" class="">rdar://18249673</a><br class=""><br class="">@class MyObject;<br class=""><br class="">Modified: cfe/trunk/test/CodeGenObjCXX/literals.mm<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjCXX/literals.mm?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenObjCXX/literals.mm?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/CodeGenObjCXX/literals.mm (original)<br class="">+++ cfe/trunk/test/CodeGenObjCXX/literals.mm Thu Dec 22 18:23:01 2016<br class="">@@ -1,4 +1,4 @@<br class="">-// RUN: %clang_cc1 -I %S/Inputs -triple x86_64-apple-darwin10 -emit-llvm -fblocks -fobjc-arc -fobjc-runtime-has-weak -fexceptions -fobjc-exceptions -fcxx-exceptions -fobjc-arc-exceptions -O2 -disable-llvm-optzns -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -I %S/Inputs -triple x86_64-apple-darwin10 -emit-llvm -fblocks -fobjc-arc -fobjc-runtime-has-weak -fexceptions -fobjc-exceptions -fcxx-exceptions -fobjc-arc-exceptions -O2 -disable-llvm-passes -o - %s | FileCheck %s<br class=""><br class="">#include "literal-support.h"<br class=""><br class=""><br class="">Modified: cfe/trunk/test/Driver/cc1-response-files.c<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Driver/cc1-response-files.c?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Driver/cc1-response-files.c?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/Driver/cc1-response-files.c (original)<br class="">+++ cfe/trunk/test/Driver/cc1-response-files.c Thu Dec 22 18:23:01 2016<br class="">@@ -1,2 +1,2 @@<br class="">-// RUN: %clang @%S/Inputs/cc1-response.txt -fsyntax-only -disable-llvm-optzns<br class="">+// RUN: %clang @%S/Inputs/cc1-response.txt -fsyntax-only -disable-llvm-passes<br class="">int main() {}<br class=""><br class="">Modified: cfe/trunk/test/Driver/cl-options.c<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Driver/cl-options.c?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Driver/cl-options.c?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/Driver/cl-options.c (original)<br class="">+++ cfe/trunk/test/Driver/cl-options.c Thu Dec 22 18:23:01 2016<br class="">@@ -527,7 +527,7 @@<br class="">// RUN:     -fno-ms-compatibility \<br class="">// RUN:     -fms-extensions \<br class="">// RUN:     -fno-ms-extensions \<br class="">-// RUN:     -mllvm -disable-llvm-optzns \<br class="">+// RUN:     -mllvm -disable-llvm-passes \<br class="">// RUN:     -resource-dir asdf \<br class="">// RUN:     -resource-dir=asdf \<br class="">// RUN:     -Wunused-variable \<br class=""><br class="">Modified: cfe/trunk/test/Modules/cxx-irgen.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Modules/cxx-irgen.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Modules/cxx-irgen.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/Modules/cxx-irgen.cpp (original)<br class="">+++ cfe/trunk/test/Modules/cxx-irgen.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,6 +1,6 @@<br class="">// RUN: rm -rf %t<br class="">-// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -x objective-c++ -std=c++11 -fmodules-cache-path=%t -I %S/Inputs -triple %itanium_abi_triple -disable-llvm-optzns -emit-llvm -o - %s | FileCheck %s<br class="">-// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -x objective-c++ -std=c++11 -fmodules-cache-path=%t -I %S/Inputs -triple %itanium_abi_triple -disable-llvm-optzns -emit-llvm -debug-info-kind=limited -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -x objective-c++ -std=c++11 -fmodules-cache-path=%t -I %S/Inputs -triple %itanium_abi_triple -disable-llvm-passes -emit-llvm -o - %s | FileCheck %s<br class="">+// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -x objective-c++ -std=c++11 -fmodules-cache-path=%t -I %S/Inputs -triple %itanium_abi_triple -disable-llvm-passes -emit-llvm -debug-info-kind=limited -o - %s | FileCheck %s<br class="">// FIXME: When we have a syntax for modules in C++, use that.<br class=""><br class="">@import cxx_irgen_top;<br class=""><br class="">Modified: cfe/trunk/test/OpenMP/declare_reduction_codegen.c<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/OpenMP/declare_reduction_codegen.c?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/OpenMP/declare_reduction_codegen.c?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/OpenMP/declare_reduction_codegen.c (original)<br class="">+++ cfe/trunk/test/OpenMP/declare_reduction_codegen.c Thu Dec 22 18:23:01 2016<br class="">@@ -1,6 +1,6 @@<br class="">-// RUN: %clang_cc1 -verify -fopenmp -x c -emit-llvm %s -triple %itanium_abi_triple -o - -femit-all-decls -disable-llvm-optzns | FileCheck %s<br class="">-// RUN: %clang_cc1 -fopenmp -x c -triple %itanium_abi_triple -emit-pch -o %t %s -femit-all-decls -disable-llvm-optzns<br class="">-// RUN: %clang_cc1 -fopenmp -x c -triple %itanium_abi_triple -include-pch %t -verify %s -emit-llvm -o - -femit-all-decls -disable-llvm-optzns | FileCheck --check-prefix=CHECK-LOAD %s<br class="">+// RUN: %clang_cc1 -verify -fopenmp -x c -emit-llvm %s -triple %itanium_abi_triple -o - -femit-all-decls -disable-llvm-passes | FileCheck %s<br class="">+// RUN: %clang_cc1 -fopenmp -x c -triple %itanium_abi_triple -emit-pch -o %t %s -femit-all-decls -disable-llvm-passes<br class="">+// RUN: %clang_cc1 -fopenmp -x c -triple %itanium_abi_triple -include-pch %t -verify %s -emit-llvm -o - -femit-all-decls -disable-llvm-passes | FileCheck --check-prefix=CHECK-LOAD %s<br class="">// expected-no-diagnostics<br class=""><br class="">#ifndef HEADER<br class=""><br class="">Modified: cfe/trunk/test/OpenMP/declare_reduction_codegen.cpp<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/OpenMP/declare_reduction_codegen.cpp?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/OpenMP/declare_reduction_codegen.cpp?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/OpenMP/declare_reduction_codegen.cpp (original)<br class="">+++ cfe/trunk/test/OpenMP/declare_reduction_codegen.cpp Thu Dec 22 18:23:01 2016<br class="">@@ -1,6 +1,6 @@<br class="">-// RUN: %clang_cc1 -verify -fopenmp -x c++ -emit-llvm %s -triple %itanium_abi_triple -fexceptions -fcxx-exceptions -o - -femit-all-decls -disable-llvm-optzns | FileCheck %s<br class="">-// RUN: %clang_cc1 -fopenmp -x c++ -std=c++11 -triple %itanium_abi_triple -fexceptions -fcxx-exceptions -emit-pch -o %t %s -femit-all-decls -disable-llvm-optzns<br class="">-// RUN: %clang_cc1 -fopenmp -x c++ -triple %itanium_abi_triple -fexceptions -fcxx-exceptions -std=c++11 -include-pch %t -verify %s -emit-llvm -o - -femit-all-decls -disable-llvm-optzns | FileCheck --check-prefix=CHECK-LOAD %s<br class="">+// RUN: %clang_cc1 -verify -fopenmp -x c++ -emit-llvm %s -triple %itanium_abi_triple -fexceptions -fcxx-exceptions -o - -femit-all-decls -disable-llvm-passes | FileCheck %s<br class="">+// RUN: %clang_cc1 -fopenmp -x c++ -std=c++11 -triple %itanium_abi_triple -fexceptions -fcxx-exceptions -emit-pch -o %t %s -femit-all-decls -disable-llvm-passes<br class="">+// RUN: %clang_cc1 -fopenmp -x c++ -triple %itanium_abi_triple -fexceptions -fcxx-exceptions -std=c++11 -include-pch %t -verify %s -emit-llvm -o - -femit-all-decls -disable-llvm-passes | FileCheck --check-prefix=CHECK-LOAD %s<br class="">// expected-no-diagnostics<br class=""><br class="">#ifndef HEADER<br class=""><br class="">Modified: cfe/trunk/test/Profile/func-entry.c<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Profile/func-entry.c?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Profile/func-entry.c?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/Profile/func-entry.c (original)<br class="">+++ cfe/trunk/test/Profile/func-entry.c Thu Dec 22 18:23:01 2016<br class="">@@ -1,7 +1,7 @@<br class="">// Test that function entry counts are set correctly.<br class=""><br class="">// RUN: llvm-profdata merge %S/Inputs/func-entry.proftext -o %t.profdata<br class="">-// RUN: %clang_cc1 %s -o - -disable-llvm-optzns -emit-llvm -fprofile-instrument-use-path=%t.profdata | FileCheck %s<br class="">+// RUN: %clang_cc1 %s -o - -disable-llvm-passes -emit-llvm -fprofile-instrument-use-path=%t.profdata | FileCheck %s<br class=""><br class="">void foo(void);<br class=""><br class=""><br class="">Modified: cfe/trunk/test/Profile/gcc-flag-compatibility.c<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Profile/gcc-flag-compatibility.c?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Profile/gcc-flag-compatibility.c?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/Profile/gcc-flag-compatibility.c (original)<br class="">+++ cfe/trunk/test/Profile/gcc-flag-compatibility.c Thu Dec 22 18:23:01 2016<br class="">@@ -18,14 +18,14 @@<br class="">// RUN: rm -rf %t.dir<br class="">// RUN: mkdir -p %t.dir/some/path<br class="">// RUN: llvm-profdata merge %S/Inputs/gcc-flag-compatibility.proftext -o %t.dir/some/path/default.profdata<br class="">-// RUN: %clang %s -o - -mllvm -disable-llvm-optzns -emit-llvm -S -fprofile-use=%t.dir/some/path | FileCheck -check-prefix=PROFILE-USE-2 %s<br class="">+// RUN: %clang %s -o - -mllvm -disable-llvm-passes -emit-llvm -S -fprofile-use=%t.dir/some/path | FileCheck -check-prefix=PROFILE-USE-2 %s<br class="">// PROFILE-USE-2: = !{!"branch_weights", i32 101, i32 2}<br class=""><br class="">// Check that -fprofile-use=some/path/file.prof reads some/path/file.prof<br class="">// RUN: rm -rf %t.dir<br class="">// RUN: mkdir -p %t.dir/some/path<br class="">// RUN: llvm-profdata merge %S/Inputs/gcc-flag-compatibility.proftext -o %t.dir/some/path/file.prof<br class="">-// RUN: %clang %s -o - -mllvm -disable-llvm-optzns -emit-llvm -S -fprofile-use=%t.dir/some/path/file.prof | FileCheck -check-prefix=PROFILE-USE-3 %s<br class="">+// RUN: %clang %s -o - -mllvm -disable-llvm-passes -emit-llvm -S -fprofile-use=%t.dir/some/path/file.prof | FileCheck -check-prefix=PROFILE-USE-3 %s<br class="">// PROFILE-USE-3: = !{!"branch_weights", i32 101, i32 2}<br class=""><br class="">int X = 0;<br class=""><br class="">Modified: cfe/trunk/test/Profile/profile-summary.c<br class="">URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Profile/profile-summary.c?rev=290392&r1=290391&r2=290392&view=diff" class="">http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Profile/profile-summary.c?rev=290392&r1=290391&r2=290392&view=diff</a><br class="">==============================================================================<br class="">--- cfe/trunk/test/Profile/profile-summary.c (original)<br class="">+++ cfe/trunk/test/Profile/profile-summary.c Thu Dec 22 18:23:01 2016<br class="">@@ -1,7 +1,7 @@<br class="">// Test that profile summary is set correctly.<br class=""><br class="">// RUN: llvm-profdata merge %S/Inputs/max-function-count.proftext -o %t.profdata<br class="">-// RUN: %clang_cc1 %s -o - -disable-llvm-optzns -emit-llvm -fprofile-instrument-use-path=%t.profdata | FileCheck %s<br class="">+// RUN: %clang_cc1 %s -o - -disable-llvm-passes -emit-llvm -fprofile-instrument-use-path=%t.profdata | FileCheck %s<br class="">//<br class="">int begin(int i) {<br class="">  if (i)<br class=""><br class=""><br class="">_______________________________________________<br class="">cfe-commits mailing list<br class=""><a href="mailto:cfe-commits@lists.llvm.org" class="">cfe-commits@lists.llvm.org</a><br class="">http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits<br class=""></blockquote><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">_______________________________________________</span><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">cfe-commits mailing list</span><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><a href="mailto:cfe-commits@lists.llvm.org" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;" class="">cfe-commits@lists.llvm.org</a><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;" class="">http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits</a></div></blockquote></div><br class=""></body></html>