r360403 - Change -gz and -Wa, --compress-debug-sections to use gABI compression (SHF_COMPRESSED)

2019-05-09 Thread Fangrui Song via cfe-commits
Author: maskray Date: Thu May 9 19:08:21 2019 New Revision: 360403 URL: http://llvm.org/viewvc/llvm-project?rev=360403&view=rev Log: Change -gz and -Wa,--compress-debug-sections to use gABI compression (SHF_COMPRESSED) Since July 15, 2015 (binutils-gdb commit 19a7fe52ae3d0971e67a134bcb1648899e2

r360408 - Delete write-only HasQualifiers after rC360370

2019-05-09 Thread Fangrui Song via cfe-commits
Author: maskray Date: Thu May 9 23:59:50 2019 New Revision: 360408 URL: http://llvm.org/viewvc/llvm-project?rev=360408&view=rev Log: Delete write-only HasQualifiers after rC360370 Modified: cfe/trunk/lib/AST/ExprConstant.cpp Modified: cfe/trunk/lib/AST/ExprConstant.cpp URL: http://llvm.org

r360495 - [cc1as] Change -compress-debug-sections= to use --

2019-05-10 Thread Fangrui Song via cfe-commits
Author: maskray Date: Fri May 10 18:14:50 2019 New Revision: 360495 URL: http://llvm.org/viewvc/llvm-project?rev=360495&view=rev Log: [cc1as] Change -compress-debug-sections= to use -- The double dash form is documented by GNU as, used by gcc, and accepted by llvm-mc. Modified: cfe/trunk/in

r360892 - Recommit [Object] Change object::SectionRef::getContents() to return Expected

2019-05-16 Thread Fangrui Song via cfe-commits
Author: maskray Date: Thu May 16 06:24:04 2019 New Revision: 360892 URL: http://llvm.org/viewvc/llvm-project?rev=360892&view=rev Log: Recommit [Object] Change object::SectionRef::getContents() to return Expected r360876 didn't fix 2 call sites in clang. Expected> may be better but use Expected

[clang-tools-extra] r371394 - [clang-doc] sys::fs::F_None -> OF_None. NFC

2019-09-09 Thread Fangrui Song via cfe-commits
Author: maskray Date: Mon Sep 9 05:42:10 2019 New Revision: 371394 URL: http://llvm.org/viewvc/llvm-project?rev=371394&view=rev Log: [clang-doc] sys::fs::F_None -> OF_None. NFC F_None, F_Text and F_Append are kept for compatibility. Modified: clang-tools-extra/trunk/clang-doc/HTMLGenerator.

r371586 - [CodeGen] Add alias for cpu_dispatch function with IFunc & Fix resolver linkage type

2019-09-10 Thread Fangrui Song via cfe-commits
Author: maskray Date: Tue Sep 10 18:54:48 2019 New Revision: 371586 URL: http://llvm.org/viewvc/llvm-project?rev=371586&view=rev Log: [CodeGen] Add alias for cpu_dispatch function with IFunc & Fix resolver linkage type Multi-versioned functions defined by cpu_dispatch and implemented with IFunc

r371917 - [Driver] Improve Clang::getDependencyFileName and its tests after rC371853

2019-09-13 Thread Fangrui Song via cfe-commits
Author: maskray Date: Fri Sep 13 21:13:15 2019 New Revision: 371917 URL: http://llvm.org/viewvc/llvm-project?rev=371917&view=rev Log: [Driver] Improve Clang::getDependencyFileName and its tests after rC371853 The test file name metadata-with-dots.c is confusing because -MD and -MMD have nothing t

r371918 - [Driver] Fix multiple bugs related to dependency file options: -M -MM -MD -MMD -MT -MQ

2019-09-13 Thread Fangrui Song via cfe-commits
Author: maskray Date: Fri Sep 13 23:01:22 2019 New Revision: 371918 URL: http://llvm.org/viewvc/llvm-project?rev=371918&view=rev Log: [Driver] Fix multiple bugs related to dependency file options: -M -MM -MD -MMD -MT -MQ -M -o test.i => dependency file is test.d, not test.i -MM -o test.i => depe

r371920 - [clang-scan-deps] Add -M to work around -MT issue after r371918

2019-09-14 Thread Fangrui Song via cfe-commits
Author: maskray Date: Sat Sep 14 00:25:27 2019 New Revision: 371920 URL: http://llvm.org/viewvc/llvm-project?rev=371920&view=rev Log: [clang-scan-deps] Add -M to work around -MT issue after r371918 gcc will complain if -MT is used but neither -M nor -MM is specified: > cc1: error: to generate de

r372299 - [Builtins] Delete setjmp_syscall and qsetjmp

2019-09-18 Thread Fangrui Song via cfe-commits
Author: maskray Date: Wed Sep 18 21:41:38 2019 New Revision: 372299 URL: http://llvm.org/viewvc/llvm-project?rev=372299&view=rev Log: [Builtins] Delete setjmp_syscall and qsetjmp Similar to the resolution of gcc PR71876. Nobody uses them or needs the [-Wincomplete-setjmp-declaration] diagnostic.

[clang-tools-extra] r372706 - [clang-tidy] Add missing InfiniteLoopCheck.h, InfiniteLoopCheck.cpp and test from D64736

2019-09-24 Thread Fangrui Song via cfe-commits
Author: maskray Date: Tue Sep 24 02:06:31 2019 New Revision: 372706 URL: http://llvm.org/viewvc/llvm-project?rev=372706&view=rev Log: [clang-tidy] Add missing InfiniteLoopCheck.h, InfiniteLoopCheck.cpp and test from D64736 Added: clang-tools-extra/trunk/clang-tidy/bugprone/InfiniteLoopCheck.

[clang-tools-extra] r372711 - [clang-tidy] Add bugprone-infinite-loop.rst from D64736 to fix buildbot

2019-09-24 Thread Fangrui Song via cfe-commits
Author: maskray Date: Tue Sep 24 02:32:00 2019 New Revision: 372711 URL: http://llvm.org/viewvc/llvm-project?rev=372711&view=rev Log: [clang-tidy] Add bugprone-infinite-loop.rst from D64736 to fix buildbot Added: clang-tools-extra/trunk/docs/clang-tidy/checks/bugprone-infinite-loop.rst Added

[clang-tools-extra] r372715 - [clang-tidy][test] Add -fexceptions to bugprone-infinite-loop.test

2019-09-24 Thread Fangrui Song via cfe-commits
Author: maskray Date: Tue Sep 24 02:55:35 2019 New Revision: 372715 URL: http://llvm.org/viewvc/llvm-project?rev=372715&view=rev Log: [clang-tidy][test] Add -fexceptions to bugprone-infinite-loop.test This fixes llvm-clang-lld-x86_64-scei-ps4-ubuntu-fast. -fexceptions is disabled by default on X

r372814 - [Driver] Always use -z separate-loadable-segments with lld on Fuchsia

2019-09-25 Thread Fangrui Song via cfe-commits
Author: maskray Date: Wed Sep 25 00:06:50 2019 New Revision: 372814 URL: http://llvm.org/viewvc/llvm-project?rev=372814&view=rev Log: [Driver] Always use -z separate-loadable-segments with lld on Fuchsia The option was added to lld in D67481/372807. Reviewed By: phosek Differential Revision: ht

r372939 - [clang-format] Add SortPriority fields to fix -Wmissing-field-initializers after D64695/r372919

2019-09-25 Thread Fangrui Song via cfe-commits
Author: maskray Date: Wed Sep 25 19:02:17 2019 New Revision: 372939 URL: http://llvm.org/viewvc/llvm-project?rev=372939&view=rev Log: [clang-format] Add SortPriority fields to fix -Wmissing-field-initializers after D64695/r372919 Modified: cfe/trunk/lib/Format/Format.cpp cfe/trunk/unitte

r373043 - [test] Use %clang_cc1 instead of %clang -cc1

2019-09-26 Thread Fangrui Song via cfe-commits
Author: maskray Date: Thu Sep 26 22:37:06 2019 New Revision: 373043 URL: http://llvm.org/viewvc/llvm-project?rev=373043&view=rev Log: [test] Use %clang_cc1 instead of %clang -cc1 Modified: cfe/trunk/test/CodeGen/align-global-large.c cfe/trunk/test/CodeGenObjC/protocol-comdat.m cfe/tru

r348911 - [CodeGen] Fix -DBUILD_SHARED_LIBS=on build after rC348907

2018-12-11 Thread Fangrui Song via cfe-commits
Author: maskray Date: Tue Dec 11 22:07:33 2018 New Revision: 348911 URL: http://llvm.org/viewvc/llvm-project?rev=348911&view=rev Log: [CodeGen] Fix -DBUILD_SHARED_LIBS=on build after rC348907 Modified: cfe/trunk/lib/CodeGen/CMakeLists.txt Modified: cfe/trunk/lib/CodeGen/CMakeLists.txt URL:

r348915 - Add explicit dependency on clangSerialization for a bunch of components to fix -DBUILD_SHARED_LIBS=on build

2018-12-12 Thread Fangrui Song via cfe-commits
Author: maskray Date: Wed Dec 12 00:02:18 2018 New Revision: 348915 URL: http://llvm.org/viewvc/llvm-project?rev=348915&view=rev Log: Add explicit dependency on clangSerialization for a bunch of components to fix -DBUILD_SHARED_LIBS=on build This is a more thorough fix of rC348911. The story abo

[clang-tools-extra] r348916 - Add explicit dependency on clangSerialization after rC348911

2018-12-12 Thread Fangrui Song via cfe-commits
Author: maskray Date: Wed Dec 12 00:25:16 2018 New Revision: 348916 URL: http://llvm.org/viewvc/llvm-project?rev=348916&view=rev Log: Add explicit dependency on clangSerialization after rC348911 Modified: clang-tools-extra/trunk/change-namespace/CMakeLists.txt clang-tools-extra/trunk/chan

r349259 - [libclang] Add dependency on clangSerialization to unbreak -DBUILD_SHARED_LIBS=1 build after rC349237

2018-12-15 Thread Fangrui Song via cfe-commits
Author: maskray Date: Sat Dec 15 00:54:06 2018 New Revision: 349259 URL: http://llvm.org/viewvc/llvm-project?rev=349259&view=rev Log: [libclang] Add dependency on clangSerialization to unbreak -DBUILD_SHARED_LIBS=1 build after rC349237 Frontend headers have undefined reference on the symbol `cl

[clang-tools-extra] r350037 - [clangd] Delete trailing ; NFC

2018-12-23 Thread Fangrui Song via cfe-commits
Author: maskray Date: Sun Dec 23 14:20:34 2018 New Revision: 350037 URL: http://llvm.org/viewvc/llvm-project?rev=350037&view=rev Log: [clangd] Delete trailing ; NFC Modified: clang-tools-extra/trunk/clangd/TUScheduler.h Modified: clang-tools-extra/trunk/clangd/TUScheduler.h URL: http://llvm

[clang-tools-extra] r350040 - [clangd] Delete stray semicolon. NFC

2018-12-23 Thread Fangrui Song via cfe-commits
Author: maskray Date: Sun Dec 23 19:19:53 2018 New Revision: 350040 URL: http://llvm.org/viewvc/llvm-project?rev=350040&view=rev Log: [clangd] Delete stray semicolon. NFC Modified: clang-tools-extra/trunk/clangd/Function.h Modified: clang-tools-extra/trunk/clangd/Function.h URL: http://llvm

r341756 - [Parser] Remove an unnecessary `mutable`

2018-09-08 Thread Fangrui Song via cfe-commits
Author: maskray Date: Sat Sep 8 18:54:18 2018 New Revision: 341756 URL: http://llvm.org/viewvc/llvm-project?rev=341756&view=rev Log: [Parser] Remove an unnecessary `mutable` Modified: cfe/trunk/include/clang/Parse/Parser.h Modified: cfe/trunk/include/clang/Parse/Parser.h URL: http://llvm.o

r341763 - [Sema] Make typo correction slightly more efficient

2018-09-09 Thread Fangrui Song via cfe-commits
Author: maskray Date: Sun Sep 9 10:20:03 2018 New Revision: 341763 URL: http://llvm.org/viewvc/llvm-project?rev=341763&view=rev Log: [Sema] Make typo correction slightly more efficient edit_distance returns UpperBound+1 if the distance will exceed UpperBound. We can subtract 1 from UpperBound a

[clang-tools-extra] r342198 - [clangd] Fix TUScheduler typos

2018-09-13 Thread Fangrui Song via cfe-commits
Author: maskray Date: Thu Sep 13 17:56:11 2018 New Revision: 342198 URL: http://llvm.org/viewvc/llvm-project?rev=342198&view=rev Log: [clangd] Fix TUScheduler typos Modified: clang-tools-extra/trunk/clangd/TUScheduler.cpp clang-tools-extra/trunk/clangd/TUScheduler.h Modified: clang-tools

r342290 - test/Driver/output-file-cleanup.c: delete non-readable temporary file

2018-09-14 Thread Fangrui Song via cfe-commits
Author: maskray Date: Fri Sep 14 14:36:35 2018 New Revision: 342290 URL: http://llvm.org/viewvc/llvm-project?rev=342290&view=rev Log: test/Driver/output-file-cleanup.c: delete non-readable temporary file %t-dir/2.c made tools (rsync, ripgrep, ...) sad (EACCES warning). Modified: cfe/trunk/te

[clang-tools-extra] r342445 - [pp-trace] Remove unused using directives

2018-09-17 Thread Fangrui Song via cfe-commits
Author: maskray Date: Mon Sep 17 23:57:58 2018 New Revision: 342445 URL: http://llvm.org/viewvc/llvm-project?rev=342445&view=rev Log: [pp-trace] Remove unused using directives Modified: clang-tools-extra/trunk/pp-trace/PPTrace.cpp Modified: clang-tools-extra/trunk/pp-trace/PPTrace.cpp URL:

r342825 - [Index] Fix header guard naming

2018-09-22 Thread Fangrui Song via cfe-commits
Author: maskray Date: Sat Sep 22 15:49:38 2018 New Revision: 342825 URL: http://llvm.org/viewvc/llvm-project?rev=342825&view=rev Log: [Index] Fix header guard naming Modified: cfe/trunk/include/clang/Index/USRGeneration.h Modified: cfe/trunk/include/clang/Index/USRGeneration.h URL: http://l

r342831 - [Index] Report specialization bases as references when IndexImplicitInstantiation is true

2018-09-23 Thread Fangrui Song via cfe-commits
Author: maskray Date: Sun Sep 23 01:23:48 2018 New Revision: 342831 URL: http://llvm.org/viewvc/llvm-project?rev=342831&view=rev Log: [Index] Report specialization bases as references when IndexImplicitInstantiation is true Summary: template struct B {}; template struct D : B {}; // `B

r342950 - Annotate LookupResult::clear() as LLVM_ATTRIBUTE_REINITIALIZES to silence bugprone-use-after-move after rC342925

2018-09-25 Thread Fangrui Song via cfe-commits
Author: maskray Date: Tue Sep 25 01:07:42 2018 New Revision: 342950 URL: http://llvm.org/viewvc/llvm-project?rev=342950&view=rev Log: Annotate LookupResult::clear() as LLVM_ATTRIBUTE_REINITIALIZES to silence bugprone-use-after-move after rC342925 Reviewers: rsmith Reviewed By: rsmith Subscribe

[clang-tools-extra] r343039 - [clangd] Remove unused using-declaration testing::AllOf

2018-09-25 Thread Fangrui Song via cfe-commits
Author: maskray Date: Tue Sep 25 15:32:11 2018 New Revision: 343039 URL: http://llvm.org/viewvc/llvm-project?rev=343039&view=rev Log: [clangd] Remove unused using-declaration testing::AllOf Modified: clang-tools-extra/trunk/unittests/clangd/SerializationTests.cpp Modified: clang-tools-extra/

r343072 - [Frontend] Tidy up -print-decl-contexts conditions

2018-09-25 Thread Fangrui Song via cfe-commits
Author: maskray Date: Tue Sep 25 23:28:14 2018 New Revision: 343072 URL: http://llvm.org/viewvc/llvm-project?rev=343072&view=rev Log: [Frontend] Tidy up -print-decl-contexts conditions The existing conditions are not consistent. Some have braces and define a temporary Decl while others simply ca

r343147 - llvm::sort(C.begin(), C.end(), ...) -> llvm::sort(C, ...)

2018-09-26 Thread Fangrui Song via cfe-commits
Author: maskray Date: Wed Sep 26 15:16:28 2018 New Revision: 343147 URL: http://llvm.org/viewvc/llvm-project?rev=343147&view=rev Log: llvm::sort(C.begin(), C.end(), ...) -> llvm::sort(C, ...) Summary: The convenience wrapper in STLExtras is available since rL342102. Reviewers: rsmith, #clang, db

r343152 - Remove trailing space in rC343150

2018-09-26 Thread Fangrui Song via cfe-commits
Author: maskray Date: Wed Sep 26 16:47:00 2018 New Revision: 343152 URL: http://llvm.org/viewvc/llvm-project?rev=343152&view=rev Log: Remove trailing space in rC343150 Modified: cfe/trunk/include/clang/Sema/Lookup.h Modified: cfe/trunk/include/clang/Sema/Lookup.h URL: http://llvm.org/viewvc

[clang-tools-extra] r343166 - llvm::sort(C.begin(), C.end()) -> llvm::sort(C)

2018-09-26 Thread Fangrui Song via cfe-commits
Author: maskray Date: Wed Sep 26 21:19:29 2018 New Revision: 343166 URL: http://llvm.org/viewvc/llvm-project?rev=343166&view=rev Log: llvm::sort(C.begin(), C.end()) -> llvm::sort(C) The convenience wrapper in STLExtras is available since rL342102. Modified: clang-tools-extra/trunk/clang-tidy

[clang-tools-extra] r343168 - [clang-tidy] Add dependency to clangAnalysis after rC343160

2018-09-26 Thread Fangrui Song via cfe-commits
Author: maskray Date: Wed Sep 26 21:23:24 2018 New Revision: 343168 URL: http://llvm.org/viewvc/llvm-project?rev=343168&view=rev Log: [clang-tidy] Add dependency to clangAnalysis after rC343160 Modified: clang-tools-extra/trunk/clang-tidy/mpi/CMakeLists.txt Modified: clang-tools-extra/trunk/

r343425 - Use the container form llvm::sort(C, ...)

2018-09-30 Thread Fangrui Song via cfe-commits
Author: maskray Date: Sun Sep 30 14:41:11 2018 New Revision: 343425 URL: http://llvm.org/viewvc/llvm-project?rev=343425&view=rev Log: Use the container form llvm::sort(C, ...) There are a few leftovers of rC343147 that are not (\w+)\.begin but in the form of ([-[:alnum:]>.]+)\.begin or spanning t

r356005 - Delete unused declaration of DeclContextPrintAction after the removal of -print-decl-contexts by D52529

2019-03-12 Thread Fangrui Song via cfe-commits
Author: maskray Date: Tue Mar 12 20:22:33 2019 New Revision: 356005 URL: http://llvm.org/viewvc/llvm-project?rev=356005&view=rev Log: Delete unused declaration of DeclContextPrintAction after the removal of -print-decl-contexts by D52529 Modified: cfe/trunk/include/clang/Frontend/FrontendAct

[clang-tools-extra] r356366 - [pp-trace] Delete -ignore and add a new option -callbacks

2019-03-18 Thread Fangrui Song via cfe-commits
Author: maskray Date: Mon Mar 18 06:30:17 2019 New Revision: 356366 URL: http://llvm.org/viewvc/llvm-project?rev=356366&view=rev Log: [pp-trace] Delete -ignore and add a new option -callbacks Summary: -ignore specifies a list of PP callbacks to ignore. It cannot express a whitelist, which may be

[clang-tools-extra] r356849 - [pp-trace] Modernize the code

2019-03-23 Thread Fangrui Song via cfe-commits
Author: maskray Date: Sat Mar 23 23:55:08 2019 New Revision: 356849 URL: http://llvm.org/viewvc/llvm-project?rev=356849&view=rev Log: [pp-trace] Modernize the code Use InitLLVM and WithColor Delete PPTraceConsumer, add the callback in PPTraceAction Migrae to tooling::createExecutorFromCommandLine

[clang-tools-extra] r356850 - [pp-trace] Wrap code in clang::pp_trace

2019-03-24 Thread Fangrui Song via cfe-commits
Author: maskray Date: Sun Mar 24 00:21:32 2019 New Revision: 356850 URL: http://llvm.org/viewvc/llvm-project?rev=356850&view=rev Log: [pp-trace] Wrap code in clang::pp_trace Modified: clang-tools-extra/trunk/pp-trace/PPCallbacksTracker.cpp clang-tools-extra/trunk/pp-trace/PPCallbacksTrack

[clang-tools-extra] r356851 - [pp-trace] Delete redundant clang::

2019-03-24 Thread Fangrui Song via cfe-commits
Author: maskray Date: Sun Mar 24 00:31:21 2019 New Revision: 356851 URL: http://llvm.org/viewvc/llvm-project?rev=356851&view=rev Log: [pp-trace] Delete redundant clang:: And clarify command line options Modified: clang-tools-extra/trunk/docs/pp-trace.rst clang-tools-extra/trunk/pp-trace/

[clang-tools-extra] r356887 - [pp-trace] Try fixing MSVC C2248 after rCTE356849

2019-03-25 Thread Fangrui Song via cfe-commits
Author: maskray Date: Mon Mar 25 04:40:11 2019 New Revision: 356887 URL: http://llvm.org/viewvc/llvm-project?rev=356887&view=rev Log: [pp-trace] Try fixing MSVC C2248 after rCTE356849 Modified: clang-tools-extra/trunk/pp-trace/PPTrace.cpp Modified: clang-tools-extra/trunk/pp-trace/PPTrace.cp

r357001 - [CodeGen] Delete never used LValueAlign

2019-03-26 Thread Fangrui Song via cfe-commits
Author: maskray Date: Tue Mar 26 08:39:45 2019 New Revision: 357001 URL: http://llvm.org/viewvc/llvm-project?rev=357001&view=rev Log: [CodeGen] Delete never used LValueAlign It was added by rC176658 but never used since then. Modified: cfe/trunk/lib/CodeGen/CGAtomic.cpp Modified: cfe/trunk/

r357150 - [Driver] Allow -gsplit-dwarf on ELF OSes other than Linux and Fuchsia

2019-03-28 Thread Fangrui Song via cfe-commits
Author: maskray Date: Thu Mar 28 01:24:00 2019 New Revision: 357150 URL: http://llvm.org/viewvc/llvm-project?rev=357150&view=rev Log: [Driver] Allow -gsplit-dwarf on ELF OSes other than Linux and Fuchsia In gcc, -gsplit-dwarf is handled in gcc/gcc.c as a spec (ASM_FINAL_SPEC): objcopy --extract-d

r357151 - Fix tests after rC357150

2019-03-28 Thread Fangrui Song via cfe-commits
Author: maskray Date: Thu Mar 28 01:41:17 2019 New Revision: 357151 URL: http://llvm.org/viewvc/llvm-project?rev=357151&view=rev Log: Fix tests after rC357150 Modified: cfe/trunk/test/Driver/cuda-unsupported-debug-options.cu cfe/trunk/test/Driver/openmp-unsupported-debug-options.c Modifi

r375439 - [test] Merge Driver/as-w-warnings.c into as-no-warnings.c

2019-10-21 Thread Fangrui Song via cfe-commits
Author: maskray Date: Mon Oct 21 11:04:52 2019 New Revision: 375439 URL: http://llvm.org/viewvc/llvm-project?rev=375439&view=rev Log: [test] Merge Driver/as-w-warnings.c into as-no-warnings.c For -integrated-as RUN lines we can remove -target. Removed: cfe/trunk/test/Driver/as-w-option.c Mod

[PATCH] Add missing Decl::Kind for -print-decl-contexts

2016-12-29 Thread Fangrui Song via cfe-commits
--- lib/Frontend/ASTConsumers.cpp | 37 - 1 file changed, 32 insertions(+), 5 deletions(-) diff --git a/lib/Frontend/ASTConsumers.cpp b/lib/Frontend/ASTConsumers.cpp index bd2ee06d16..987b8ca398 100644 --- a/lib/Frontend/ASTConsumers.cpp +++ b/lib/Frontend/ASTC

[clang] 98768ba - [test] Fix unuses FileCheck prefixes in clang/test/Modules

2021-02-01 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2021-02-01T19:46:23-08:00 New Revision: 98768bab19b27db71f497b0e5d87dfa9e5a0f05a URL: https://github.com/llvm/llvm-project/commit/98768bab19b27db71f497b0e5d87dfa9e5a0f05a DIFF: https://github.com/llvm/llvm-project/commit/98768bab19b27db71f497b0e5d87dfa9e5a0f05a.diff

[clang] 80f5395 - [test] Default clang/test to FileCheck --allow-unused-prefixes=false

2021-02-01 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2021-02-01T22:02:59-08:00 New Revision: 80f539526eec31f03aadd96753648686312b1ad1 URL: https://github.com/llvm/llvm-project/commit/80f539526eec31f03aadd96753648686312b1ad1 DIFF: https://github.com/llvm/llvm-project/commit/80f539526eec31f03aadd96753648686312b1ad1.diff

[clang-tools-extra] af6be9a - [test] Fix unused FileCheck prefixes in clang-tidy and one llvm/test/Reduce test

2021-02-01 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2021-02-01T22:51:29-08:00 New Revision: af6be9a7bb0fca891ec60138608902cd37b9f84f URL: https://github.com/llvm/llvm-project/commit/af6be9a7bb0fca891ec60138608902cd37b9f84f DIFF: https://github.com/llvm/llvm-project/commit/af6be9a7bb0fca891ec60138608902cd37b9f84f.diff

[clang] 74c94b5 - [test] Default clang/test to FileCheck --allow-unused-prefixes=false

2021-02-02 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2021-02-02T11:22:46-08:00 New Revision: 74c94b5d9c2b19333b43684c9d60decd41543d50 URL: https://github.com/llvm/llvm-project/commit/74c94b5d9c2b19333b43684c9d60decd41543d50 DIFF: https://github.com/llvm/llvm-project/commit/74c94b5d9c2b19333b43684c9d60decd41543d50.diff

[clang] 87dbdd2 - [FileCheck] Default --allow-unused-prefixes to false

2021-02-08 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2021-02-08T13:37:04-08:00 New Revision: 87dbdd2e3bb63b681f8cc3179ef5c2d5929bbf61 URL: https://github.com/llvm/llvm-project/commit/87dbdd2e3bb63b681f8cc3179ef5c2d5929bbf61 DIFF: https://github.com/llvm/llvm-project/commit/87dbdd2e3bb63b681f8cc3179ef5c2d5929bbf61.diff

[clang] 39db16e - [test] Make ELF tests less reliant on the lexicographical order of non-local symbols

2021-02-13 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2021-02-13T01:01:06-08:00 New Revision: 39db16e75bd85f9c85a9df1c92a92920006b31b3 URL: https://github.com/llvm/llvm-project/commit/39db16e75bd85f9c85a9df1c92a92920006b31b3 DIFF: https://github.com/llvm/llvm-project/commit/39db16e75bd85f9c85a9df1c92a92920006b31b3.diff

[clang] 02413b0 - [CMake] Delete LLVM_RUNTIME_BUILD_ID_LINK_TARGETS

2021-02-15 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2021-02-15T11:06:23-08:00 New Revision: 02413b097e72a3aab17e0504af135a95c0d300a1 URL: https://github.com/llvm/llvm-project/commit/02413b097e72a3aab17e0504af135a95c0d300a1 DIFF: https://github.com/llvm/llvm-project/commit/02413b097e72a3aab17e0504af135a95c0d300a1.diff

[clang] 0c2bb6b - [Driver] Clean up some Separate form options

2021-02-17 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2021-02-17T13:49:41-08:00 New Revision: 0c2bb6b446c584ab8a8b1231a136f657fa070e47 URL: https://github.com/llvm/llvm-project/commit/0c2bb6b446c584ab8a8b1231a136f657fa070e47 DIFF: https://github.com/llvm/llvm-project/commit/0c2bb6b446c584ab8a8b1231a136f657fa070e47.diff

[clang] b5ef137 - [gcov] Increment counters with atomicrmw if -fsanitize=thread

2020-08-28 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2020-08-28T16:32:35-07:00 New Revision: b5ef137c11b1cc6ae839ee75b49233825772bdd0 URL: https://github.com/llvm/llvm-project/commit/b5ef137c11b1cc6ae839ee75b49233825772bdd0 DIFF: https://github.com/llvm/llvm-project/commit/b5ef137c11b1cc6ae839ee75b49233825772bdd0.diff

[clang] 6ae7b40 - Set alignment of .llvmbc and .llvmcmd to 1

2020-08-29 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2020-08-29T18:27:34-07:00 New Revision: 6ae7b403c3e1aebcb825d3dd4777d3c1149d6d67 URL: https://github.com/llvm/llvm-project/commit/6ae7b403c3e1aebcb825d3dd4777d3c1149d6d67 DIFF: https://github.com/llvm/llvm-project/commit/6ae7b403c3e1aebcb825d3dd4777d3c1149d6d67.diff

[clang] 6e09722 - [test] Use %t instead of %T to remove race conditions between config-file3.c and target-override.c

2020-09-03 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2020-09-03T12:28:53-07:00 New Revision: 6e09722b27ed4d48dfc668b0efc2aed88d701ebf URL: https://github.com/llvm/llvm-project/commit/6e09722b27ed4d48dfc668b0efc2aed88d701ebf DIFF: https://github.com/llvm/llvm-project/commit/6e09722b27ed4d48dfc668b0efc2aed88d701ebf.diff

[clang] ab1de1f - [gcov] Delete flush_fn_list (unused since D83149)

2020-09-10 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2020-09-10T10:15:27-07:00 New Revision: ab1de1fcfb0c53bc768deb8f8bacefad7d378b7b URL: https://github.com/llvm/llvm-project/commit/ab1de1fcfb0c53bc768deb8f8bacefad7d378b7b DIFF: https://github.com/llvm/llvm-project/commit/ab1de1fcfb0c53bc768deb8f8bacefad7d378b7b.diff

[clang] d6fadc4 - [gcov] Process .gcda immediately after the accompanying .gcno instead of doing all .gcda after all .gcno

2020-09-12 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2020-09-12T13:53:03-07:00 New Revision: d6fadc49e3d7eb0977bca3ff92bf156bd059fcd4 URL: https://github.com/llvm/llvm-project/commit/d6fadc49e3d7eb0977bca3ff92bf156bd059fcd4 DIFF: https://github.com/llvm/llvm-project/commit/d6fadc49e3d7eb0977bca3ff92bf156bd059fcd4.diff

[clang] f086e85 - [gcov] Assign names to some types and loaded values used in @__llvm_internal*

2020-09-12 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2020-09-12T22:42:37-07:00 New Revision: f086e85eea94a51eb42115496ac5d24f07bc8791 URL: https://github.com/llvm/llvm-project/commit/f086e85eea94a51eb42115496ac5d24f07bc8791 DIFF: https://github.com/llvm/llvm-project/commit/f086e85eea94a51eb42115496ac5d24f07bc8791.diff

[clang] 63182c2 - [gcov] Add spanning tree optimization

2020-09-13 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2020-09-13T00:07:31-07:00 New Revision: 63182c2ac0b643a60d397274e8a31166fc7243fa URL: https://github.com/llvm/llvm-project/commit/63182c2ac0b643a60d397274e8a31166fc7243fa DIFF: https://github.com/llvm/llvm-project/commit/63182c2ac0b643a60d397274e8a31166fc7243fa.diff

[clang] 9087209 - [Driver] Add disabled-by-default -Wuse-ld-path for the deprecation warning for -fuse-ld=/abs/path

2020-09-19 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2020-09-19T15:49:44-07:00 New Revision: 9087209314caafed4b232d4a66287f2d16054ad3 URL: https://github.com/llvm/llvm-project/commit/9087209314caafed4b232d4a66287f2d16054ad3 DIFF: https://github.com/llvm/llvm-project/commit/9087209314caafed4b232d4a66287f2d16054ad3.diff

[clang] 3681be8 - Add -fprofile-update={atomic,prefer-atomic,single}

2020-09-29 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2020-09-29T10:43:23-07:00 New Revision: 3681be876fea9b270c7a1d2dc41679a399610e06 URL: https://github.com/llvm/llvm-project/commit/3681be876fea9b270c7a1d2dc41679a399610e06 DIFF: https://github.com/llvm/llvm-project/commit/3681be876fea9b270c7a1d2dc41679a399610e06.diff

[clang] 829b9f6 - [test] Fix -fbasic-block-sections= test on Windows after D89500

2020-10-20 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2020-10-20T18:31:28-07:00 New Revision: 829b9f6606af03e24d7715712e05c941d1c661ce URL: https://github.com/llvm/llvm-project/commit/829b9f6606af03e24d7715712e05c941d1c661ce DIFF: https://github.com/llvm/llvm-project/commit/829b9f6606af03e24d7715712e05c941d1c661ce.diff

[clang] 9bb9b73 - Remove HAVE_VCS_VERSION_INC, not needed

2020-10-29 Thread Fangrui Song via cfe-commits
Author: Marcel Hlopko Date: 2020-10-29T13:09:05-07:00 New Revision: 9bb9b737c5573cf3850230bc4db8dac7be0e1e85 URL: https://github.com/llvm/llvm-project/commit/9bb9b737c5573cf3850230bc4db8dac7be0e1e85 DIFF: https://github.com/llvm/llvm-project/commit/9bb9b737c5573cf3850230bc4db8dac7be0e1e85.diff

[clang] e2a1639 - [test] Fix unused check prefixes in test/Driver

2020-10-31 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2020-10-31T00:14:59-07:00 New Revision: e2a1639c738c46f65d978fde161c10bac86392af URL: https://github.com/llvm/llvm-project/commit/e2a1639c738c46f65d978fde161c10bac86392af DIFF: https://github.com/llvm/llvm-project/commit/e2a1639c738c46f65d978fde161c10bac86392af.diff

[clang] 1a51bde - [test] Clean up test/Frontend/gnu-mcount.c and fix unused check prefixes

2020-10-31 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2020-10-31T21:33:46-07:00 New Revision: 1a51bde1b62511b0a3ecf0f62807acb4bb860965 URL: https://github.com/llvm/llvm-project/commit/1a51bde1b62511b0a3ecf0f62807acb4bb860965 DIFF: https://github.com/llvm/llvm-project/commit/1a51bde1b62511b0a3ecf0f62807acb4bb860965.diff

[clang] 96289ce - [test] Fix unused check prefixes in test/AST

2020-10-31 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2020-10-31T21:46:45-07:00 New Revision: 96289ce6333ebf5a8405f824eaf02ef528e09de9 URL: https://github.com/llvm/llvm-project/commit/96289ce6333ebf5a8405f824eaf02ef528e09de9 DIFF: https://github.com/llvm/llvm-project/commit/96289ce6333ebf5a8405f824eaf02ef528e09de9.diff

[clang] bc847b3 - [cc1as] Close MCAsmParser before MCStreamer

2020-11-02 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2020-11-02T15:56:57-08:00 New Revision: bc847b31435e48ad0e54b322a716a4b9f07bc232 URL: https://github.com/llvm/llvm-project/commit/bc847b31435e48ad0e54b322a716a4b9f07bc232 DIFF: https://github.com/llvm/llvm-project/commit/bc847b31435e48ad0e54b322a716a4b9f07bc232.diff

[clang] 8a626f1 - Add textual header PPCTypes.def to module Clang_Basic after D81508

2020-11-02 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2020-11-02T18:23:26-08:00 New Revision: 8a626f1cc478298c8bf5da4b84bb2a3f6ffd01e1 URL: https://github.com/llvm/llvm-project/commit/8a626f1cc478298c8bf5da4b84bb2a3f6ffd01e1 DIFF: https://github.com/llvm/llvm-project/commit/8a626f1cc478298c8bf5da4b84bb2a3f6ffd01e1.diff

[clang] 0d4e172 - [docs] Fix clang/docs/UsersManual.rst after D87528 & D88446

2020-11-02 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2020-11-02T21:07:15-08:00 New Revision: 0d4e1729e36f6db464adf8342efce9734a1ec1ea URL: https://github.com/llvm/llvm-project/commit/0d4e1729e36f6db464adf8342efce9734a1ec1ea DIFF: https://github.com/llvm/llvm-project/commit/0d4e1729e36f6db464adf8342efce9734a1ec1ea.diff

[clang] 96ed679 - [unittest][TrasnformerTest] Fix asan stack-use-after-return

2020-11-03 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2020-11-03T12:34:45-08:00 New Revision: 96ed6793b35e8267b0c94ebe69ae94f07024f476 URL: https://github.com/llvm/llvm-project/commit/96ed6793b35e8267b0c94ebe69ae94f07024f476 DIFF: https://github.com/llvm/llvm-project/commit/96ed6793b35e8267b0c94ebe69ae94f07024f476.diff

[clang] c6a384d - [Sema] Special case -Werror-implicit-function-declaration and reject other -Werror-

2020-11-05 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2020-11-05T10:25:30-08:00 New Revision: c6a384df1f8ab85815160297543ab329e02560ef URL: https://github.com/llvm/llvm-project/commit/c6a384df1f8ab85815160297543ab329e02560ef DIFF: https://github.com/llvm/llvm-project/commit/c6a384df1f8ab85815160297543ab329e02560ef.diff

[clang] 247c5b5 - [test] Properly test -Werror-implicit-function-declaration and -Wvec-elem-size

2020-11-05 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2020-11-05T20:08:23-08:00 New Revision: 247c5b5d69631c9f5fce9bf914f09f84e5cf8232 URL: https://github.com/llvm/llvm-project/commit/247c5b5d69631c9f5fce9bf914f09f84e5cf8232 DIFF: https://github.com/llvm/llvm-project/commit/247c5b5d69631c9f5fce9bf914f09f84e5cf8232.diff

[clang] f2e479d - [OpenMP] Fix -Wmisleading-indentation after D84192

2020-11-06 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2020-11-06T20:09:43-08:00 New Revision: f2e479db92452594dfe6aff45ab7841f0a8c69a5 URL: https://github.com/llvm/llvm-project/commit/f2e479db92452594dfe6aff45ab7841f0a8c69a5 DIFF: https://github.com/llvm/llvm-project/commit/f2e479db92452594dfe6aff45ab7841f0a8c69a5.diff

[clang] d2da05d - [test] Fix Other/new-pass-manager.ll & clang/test/Misc/loop-opt-setup.c

2020-11-06 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2020-11-06T21:55:11-08:00 New Revision: d2da05de7c9ec11c3c9f26ea957cbf2225dbd0e5 URL: https://github.com/llvm/llvm-project/commit/d2da05de7c9ec11c3c9f26ea957cbf2225dbd0e5 DIFF: https://github.com/llvm/llvm-project/commit/d2da05de7c9ec11c3c9f26ea957cbf2225dbd0e5.diff

[clang] abfe348 - [test] Improve CodeGenCXX/difile_entry.cpp

2021-01-10 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2021-01-10T12:24:49-08:00 New Revision: abfe348e6b4c50c750d70adcf0b99fd3d8d4132e URL: https://github.com/llvm/llvm-project/commit/abfe348e6b4c50c750d70adcf0b99fd3d8d4132e DIFF: https://github.com/llvm/llvm-project/commit/abfe348e6b4c50c750d70adcf0b99fd3d8d4132e.diff

[clang] 02bc320 - CGDebugInfo: Delete unused DIFile* parameter

2021-01-10 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2021-01-10T15:03:40-08:00 New Revision: 02bc320545deb0212a43acae24fcf2383755d383 URL: https://github.com/llvm/llvm-project/commit/02bc320545deb0212a43acae24fcf2383755d383 DIFF: https://github.com/llvm/llvm-project/commit/02bc320545deb0212a43acae24fcf2383755d383.diff

[clang] 6215c1b - CGDebugInfo: Delete redundant test

2021-01-10 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2021-01-10T22:22:06-08:00 New Revision: 6215c1b778f62433f3d79addc299a1bbd0e524d0 URL: https://github.com/llvm/llvm-project/commit/6215c1b778f62433f3d79addc299a1bbd0e524d0 DIFF: https://github.com/llvm/llvm-project/commit/6215c1b778f62433f3d79addc299a1bbd0e524d0.diff

[clang] b8d2842 - CGDebugInfo: Delete unneeded UnwrapTypeForDebugInfo

2021-01-10 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2021-01-10T22:22:07-08:00 New Revision: b8d28420885a42d16a57e02c28129d0eb92474a1 URL: https://github.com/llvm/llvm-project/commit/b8d28420885a42d16a57e02c28129d0eb92474a1 DIFF: https://github.com/llvm/llvm-project/commit/b8d28420885a42d16a57e02c28129d0eb92474a1.diff

[clang] f4cec70 - Add an assert to CGDebugInfo::getTypeOrNull

2021-01-11 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2021-01-11T13:25:20-08:00 New Revision: f4cec703ec8452f9d8b04fae171ba459adf38123 URL: https://github.com/llvm/llvm-project/commit/f4cec703ec8452f9d8b04fae171ba459adf38123 DIFF: https://github.com/llvm/llvm-project/commit/f4cec703ec8452f9d8b04fae171ba459adf38123.diff

[clang] b88c8f1 - CGDebugInfo: Delete unused parameters

2021-01-11 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2021-01-11T13:39:03-08:00 New Revision: b88c8f1aab527f1aebe612ab6c50a418bff88584 URL: https://github.com/llvm/llvm-project/commit/b88c8f1aab527f1aebe612ab6c50a418bff88584 DIFF: https://github.com/llvm/llvm-project/commit/b88c8f1aab527f1aebe612ab6c50a418bff88584.diff

[clang] cf45731 - [Driver] Fix assertion failure when -fprofile-generate -fcs-profile-generate are used together

2021-01-12 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2021-01-12T14:19:55-08:00 New Revision: cf45731f0eaead79e1ac501b397e330df41ec152 URL: https://github.com/llvm/llvm-project/commit/cf45731f0eaead79e1ac501b397e330df41ec152 DIFF: https://github.com/llvm/llvm-project/commit/cf45731f0eaead79e1ac501b397e330df41ec152.diff

[clang] 74a42ae - [test] Add Clang side tests for -fdebug-info-for-profiling

2021-01-13 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2021-01-13T14:27:39-08:00 New Revision: 74a42aedfe14938e01d128456c76cede2ccbc26c URL: https://github.com/llvm/llvm-project/commit/74a42aedfe14938e01d128456c76cede2ccbc26c DIFF: https://github.com/llvm/llvm-project/commit/74a42aedfe14938e01d128456c76cede2ccbc26c.diff

[clang] 53b3460 - [Driver] -gsplit-dwarf: Produce .dwo regardless of -gN for -fthinlto-index=

2021-01-13 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2021-01-13T21:01:53-08:00 New Revision: 53b34601abf1d48e8df210ab8127b16fd35e275a URL: https://github.com/llvm/llvm-project/commit/53b34601abf1d48e8df210ab8127b16fd35e275a DIFF: https://github.com/llvm/llvm-project/commit/53b34601abf1d48e8df210ab8127b16fd35e275a.diff

[clang] e3b9af9 - [Driver] -gsplit-dwarf: Produce .dwo regardless of -gN for IR input

2021-01-14 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2021-01-14T11:46:22-08:00 New Revision: e3b9af92a4821fec25c207e2d1e443e09ff6b11e URL: https://github.com/llvm/llvm-project/commit/e3b9af92a4821fec25c207e2d1e443e09ff6b11e DIFF: https://github.com/llvm/llvm-project/commit/e3b9af92a4821fec25c207e2d1e443e09ff6b11e.diff

[clang] a2cc883 - [CUDA] Don't call __cudaRegisterVariable on C++17 inline variables

2020-10-05 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2020-10-05T12:53:59-07:00 New Revision: a2cc8833683dd124cf2ee96f6d17f7f835da1fc8 URL: https://github.com/llvm/llvm-project/commit/a2cc8833683dd124cf2ee96f6d17f7f835da1fc8 DIFF: https://github.com/llvm/llvm-project/commit/a2cc8833683dd124cf2ee96f6d17f7f835da1fc8.diff

[clang] cbe4d97 - [X86] Define __LAHF_SAHF__ if feature 'sahf' is set or 32-bit mode

2020-10-11 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2020-10-11T09:46:00-07:00 New Revision: cbe4d973edadba7664ab8783770fa51742cd93b9 URL: https://github.com/llvm/llvm-project/commit/cbe4d973edadba7664ab8783770fa51742cd93b9 DIFF: https://github.com/llvm/llvm-project/commit/cbe4d973edadba7664ab8783770fa51742cd93b9.diff

[clang] 012dd42 - [X86] Support -march=x86-64-v[234]

2020-10-12 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2020-10-12T10:29:46-07:00 New Revision: 012dd42e027e2ff3d183cc9dcf27004cf9711720 URL: https://github.com/llvm/llvm-project/commit/012dd42e027e2ff3d183cc9dcf27004cf9711720 DIFF: https://github.com/llvm/llvm-project/commit/012dd42e027e2ff3d183cc9dcf27004cf9711720.diff

[clang] 5a33859 - [CGBuiltin] Respect asm labels and redefine_extname for builtins with specialized emitting

2020-10-15 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2020-10-15T15:14:38-07:00 New Revision: 5a338599fbaa805587227779bde0a9986cb4646d URL: https://github.com/llvm/llvm-project/commit/5a338599fbaa805587227779bde0a9986cb4646d DIFF: https://github.com/llvm/llvm-project/commit/5a338599fbaa805587227779bde0a9986cb4646d.diff

[clang] 0ab222e - [gcov] Delete CC1 option -test-coverage

2020-10-19 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2020-10-19T21:48:51-07:00 New Revision: 0ab222e7d730bb1f8b676e64b51615624e08614b URL: https://github.com/llvm/llvm-project/commit/0ab222e7d730bb1f8b676e64b51615624e08614b DIFF: https://github.com/llvm/llvm-project/commit/0ab222e7d730bb1f8b676e64b51615624e08614b.diff

[clang] 545c687 - [gcov] Unify driver and CC1 option names for -ftest-coverage & -fprofile-arcs

2020-10-19 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2020-10-19T22:19:00-07:00 New Revision: 545c687c4b06b403915b92f422ddad737a6357b9 URL: https://github.com/llvm/llvm-project/commit/545c687c4b06b403915b92f422ddad737a6357b9 DIFF: https://github.com/llvm/llvm-project/commit/545c687c4b06b403915b92f422ddad737a6357b9.diff

[clang] 2484e91 - [Driver] Clean up -gz & --compress-debug-sections

2020-10-19 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2020-10-19T23:06:33-07:00 New Revision: 2484e9159c54def19aac69c4a217a55329da54d2 URL: https://github.com/llvm/llvm-project/commit/2484e9159c54def19aac69c4a217a55329da54d2 DIFF: https://github.com/llvm/llvm-project/commit/2484e9159c54def19aac69c4a217a55329da54d2.diff

[clang] e625f9c - -fbasic-block-sections=list=: Suppress output if failed to open the file

2020-11-09 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2020-11-09T09:26:37-08:00 New Revision: e625f9c5d1e2e69d18febae0e8d3f808df35c4c8 URL: https://github.com/llvm/llvm-project/commit/e625f9c5d1e2e69d18febae0e8d3f808df35c4c8 DIFF: https://github.com/llvm/llvm-project/commit/e625f9c5d1e2e69d18febae0e8d3f808df35c4c8.diff

[libunwind] 2c481f1 - [libunwind] Delete unused codeOffsetAtStackDecrement/registersInOtherRegisters/sameValueUsed

2020-11-09 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2020-11-09T10:19:12-08:00 New Revision: 2c481f128cad043498dc404bc7f6d6128bb7c223 URL: https://github.com/llvm/llvm-project/commit/2c481f128cad043498dc404bc7f6d6128bb7c223 DIFF: https://github.com/llvm/llvm-project/commit/2c481f128cad043498dc404bc7f6d6128bb7c223.diff

[clang] e7c7a19 - [Frontend] Treat .cuh files as CUDA source files

2020-11-12 Thread Fangrui Song via cfe-commits
Author: Anatoliy Tomilov Date: 2020-11-12T11:42:53-08:00 New Revision: e7c7a1982632270ae655c7ec8e490ca2c44193a0 URL: https://github.com/llvm/llvm-project/commit/e7c7a1982632270ae655c7ec8e490ca2c44193a0 DIFF: https://github.com/llvm/llvm-project/commit/e7c7a1982632270ae655c7ec8e490ca2c44193a0.di

[clang] bc7df03 - Make -fintegrated-cc1 work with cc1as

2020-11-14 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2020-11-14T01:16:16-08:00 New Revision: bc7df035ae68648fe39304d9e77cd7618812cca8 URL: https://github.com/llvm/llvm-project/commit/bc7df035ae68648fe39304d9e77cd7618812cca8 DIFF: https://github.com/llvm/llvm-project/commit/bc7df035ae68648fe39304d9e77cd7618812cca8.diff

[clang] c35448b - [Driver][test] Fix cc1-spawnprocess.c

2020-11-14 Thread Fangrui Song via cfe-commits
Author: Fangrui Song Date: 2020-11-14T09:53:34-08:00 New Revision: c35448ba80bdaddaf4d4f7d2076da3b24135148a URL: https://github.com/llvm/llvm-project/commit/c35448ba80bdaddaf4d4f7d2076da3b24135148a DIFF: https://github.com/llvm/llvm-project/commit/c35448ba80bdaddaf4d4f7d2076da3b24135148a.diff

<    1   2   3   4   5   6   7   8   9   10   >