This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from 3564b1df4b8 [MachineOutliner][NFC] Simplify logic in pruneCandidates
new 59066489d76 [llvm-rc] Add integer expressions parsing ability. [7/8]
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../llvm-rc/Inputs/parser-expr-bad-binary-1.rc | 1 +
.../llvm-rc/Inputs/parser-expr-bad-binary-2.rc | 1 +
.../llvm-rc/Inputs/parser-expr-bad-binary-3.rc | 1 +
test/tools/llvm-rc/Inputs/parser-expr-bad-unary.rc | 1 +
.../llvm-rc/Inputs/parser-expr-unbalanced-1.rc | 1 +
.../llvm-rc/Inputs/parser-expr-unbalanced-2.rc | 1 +
.../llvm-rc/Inputs/parser-expr-unbalanced-3.rc | 1 +
test/tools/llvm-rc/Inputs/parser-expr.rc | 15 ++++
test/tools/llvm-rc/parser-expr.test | 52 +++++++++++
test/tools/llvm-rc/parser.test | 10 +--
tools/llvm-rc/ResourceScriptParser.cpp | 100 ++++++++++++++++++++-
tools/llvm-rc/ResourceScriptParser.h | 6 ++
tools/llvm-rc/ResourceScriptToken.cpp | 12 +++
tools/llvm-rc/ResourceScriptToken.h | 3 +
14 files changed, 196 insertions(+), 9 deletions(-)
create mode 100644 test/tools/llvm-rc/Inputs/parser-expr-bad-binary-1.rc
create mode 100644 test/tools/llvm-rc/Inputs/parser-expr-bad-binary-2.rc
create mode 100644 test/tools/llvm-rc/Inputs/parser-expr-bad-binary-3.rc
create mode 100644 test/tools/llvm-rc/Inputs/parser-expr-bad-unary.rc
create mode 100644 test/tools/llvm-rc/Inputs/parser-expr-unbalanced-1.rc
create mode 100644 test/tools/llvm-rc/Inputs/parser-expr-unbalanced-2.rc
create mode 100644 test/tools/llvm-rc/Inputs/parser-expr-unbalanced-3.rc
create mode 100644 test/tools/llvm-rc/Inputs/parser-expr.rc
create mode 100644 test/tools/llvm-rc/parser-expr.test
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from c7efeba6682 [X86] Don't select (cmp (and, imm), 0) to testw
new 3564b1df4b8 [MachineOutliner][NFC] Simplify logic in pruneCandidates
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
lib/CodeGen/MachineOutliner.cpp | 131 +++++++++++++++++++---------------------
1 file changed, 61 insertions(+), 70 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from e3ae595976c [llvm-rc] Fix-up for r314468 (argument-dependent lookup in [...]
new c7efeba6682 [X86] Don't select (cmp (and, imm), 0) to testw
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
lib/Target/X86/X86ISelDAGToDAG.cpp | 5 ++++-
test/CodeGen/X86/tbm_patterns.ll | 4 ++--
test/CodeGen/X86/test-shrink-bug.ll | 2 +-
test/CodeGen/X86/test-shrink.ll | 44 ++++++++++++++++++++++++++++++++-----
4 files changed, 46 insertions(+), 9 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository clang.
from d5fedf9772 [clang] Add getUnsignedPointerDiffType method
new 3adb8ef46e [Sema] Put nullability fix-it after the end of the pointer.
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
include/clang/Sema/Sema.h | 4 ++
lib/Sema/SemaType.cpp | 37 ++++++++++-------
test/FixIt/Inputs/nullability-objc.h | 48 ++++++++++++++++++++++
test/FixIt/nullability.mm | 2 +
test/SemaObjCXX/Inputs/nullability-consistency-2.h | 2 +-
5 files changed, 77 insertions(+), 16 deletions(-)
create mode 100644 test/FixIt/Inputs/nullability-objc.h
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from df99c09b49c bpf: fix a bug for disassembling ld_pseudo inst
new 82ee1641579 ARM: Fix cases where CSI Restored bit is not cleared
new e3ae595976c [llvm-rc] Fix-up for r314468 (argument-dependent lookup in [...]
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
lib/Target/ARM/ARMFrameLowering.cpp | 13 +++++--------
lib/Target/ARM/ARMLoadStoreOptimizer.cpp | 11 +++++++++++
lib/Target/ARM/Thumb1FrameLowering.cpp | 4 +++-
test/CodeGen/ARM/sched-it-debug-nodes.mir | 2 +-
test/CodeGen/Thumb/tbb-reuse.mir | 2 +-
tools/llvm-rc/ResourceScriptParser.cpp | 8 ++++----
6 files changed, 25 insertions(+), 15 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository clang.
from c8b5789913 Properly parse a postfix expression following a Boolean lite [...]
new d5fedf9772 [clang] Add getUnsignedPointerDiffType method
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
include/clang/AST/ASTContext.h | 5 +++++
include/clang/Basic/TargetInfo.h | 3 +++
lib/AST/ASTContext.cpp | 7 +++++++
lib/Analysis/PrintfFormatString.cpp | 4 +---
lib/Analysis/ScanfFormatString.cpp | 4 ++--
test/FixIt/format.m | 31 +++++++++++++++++++++++++++++++
test/Sema/format-strings-scanf.c | 30 ++++++++++++++++++++++++++++++
7 files changed, 79 insertions(+), 5 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch release_50
in repository clang.
from 77f008b3fc Merging r312622:
new be92019b23 Merging r312651:
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
lib/Driver/ToolChains/BareMetal.cpp | 8 --------
lib/Driver/ToolChains/BareMetal.h | 2 --
test/Driver/baremetal.cpp | 10 +++++++++-
3 files changed, 9 insertions(+), 11 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch hjl/pie/static
in repository glibc.
discards f105b7f348 Add --enable-static-pie to build-many-glibcs.py
discards 69feecee59 tile: Support --enable-static-pie
discards 62ab1e7e61 sparc: Support --enable-static-pie
discards a83d2f612e sh: Support --enable-static-pie
discards ceed1571d5 s390: Support --enable-static-pie
discards 101f4e89f5 powerpc: Support --enable-static-pie
discards 1d3acb8769 nios2: Support --enable-static-pie
discards 0e57538687 mips: Support --enable-static-pie
discards 4d5b6dda93 microblaze: Support --enable-static-pie
discards f5d84c9c4f m68k: Support --enable-static-pie
discards d52e9ff55e ia64: Support --enable-static-pie
discards 7a6e51f665 hppa: Support --enable-static-pie
discards 227b4f574c arm: Support --enable-static-pie
discards a3c1cd2920 aarch64: Support --enable-static-pie
discards 1dc71c9b1d Add a test for non-PIE static executable
discards 94eea3212e x86: Allow undefined _DYNAMIC in static executable
discards 590b4daaf7 Don't use hidden visibility in libc.a with PIE on i386
discards e8efb51445 Add --enable-static-pie configure option to build static PIE
adds f124cb3811 Fix nearbyint arithmetic moved before feholdexcept (bug 22225).
adds b2f03cf3a4 AArch64: update libm-test-ulps
adds 1e6d07234f Simplify C99 isgreater macros
adds 4d3693ec1c Remove ancient __signbit inlines
adds 4088d8dd29 x86: Allow undefined _DYNAMIC in static executable
new aef87a4b5c Add --enable-static-pie configure option to build static PIE
new ed837f1558 Don't use hidden visibility in libc.a with PIE on i386
new 8cc04d94bf Add a test for non-PIE static executable
new 8d8225181c aarch64: Support --enable-static-pie
new 9bd02abac8 arm: Support --enable-static-pie
new 1334e95607 hppa: Support --enable-static-pie
new 28accaf12b ia64: Support --enable-static-pie
new 789a8ccce4 m68k: Support --enable-static-pie
new 7c4e1ef155 microblaze: Support --enable-static-pie
new e9a0f07ffd mips: Support --enable-static-pie
new 07551709e5 nios2: Support --enable-static-pie
new 0f2a73ebd3 powerpc: Support --enable-static-pie
new 24fd173e31 s390: Support --enable-static-pie
new 20549d1104 sh: Support --enable-static-pie
new f3ef1cef41 sparc: Support --enable-static-pie
new 1c3f19983c tile: Support --enable-static-pie
new 3a790cd06d Add --enable-static-pie to build-many-glibcs.py
new 5877c1ce71 aarch64: Check PIC instead of SHARED in start.S
new 038adca3ba arm: Check PIC instead of SHARED in start.S
new c7c35aee0c hppa: Check PIC instead of SHARED in start.S
new e49474ad14 m68k: Check PIC instead of SHARED in start.S
new 8675efebbd microblaze: Check PIC instead of SHARED in start.S
new 8c626a2b3e sparc: Check PIC instead of SHARED in start.S
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (f105b7f348)
\
N -- N -- N refs/heads/hjl/pie/static (8c626a2b3e)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omits" are not gone; other references still
refer to them. Any revisions marked "discards" are gone forever.
The 23 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
ChangeLog | 55 ++++++++
math/math.h | 95 +++++---------
sysdeps/aarch64/libm-test-ulps | 10 +-
sysdeps/aarch64/start.S | 2 +-
sysdeps/alpha/fpu/bits/mathinline.h | 125 ------------------
sysdeps/arm/dl-machine.h | 4 +-
sysdeps/arm/start.S | 4 +-
sysdeps/hppa/start.S | 8 +-
sysdeps/ia64/fpu/bits/mathinline.h | 53 --------
sysdeps/ieee754/dbl-64/s_nearbyint.c | 4 +-
sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c | 8 +-
sysdeps/ieee754/flt-32/s_nearbyintf.c | 4 +-
sysdeps/ieee754/ldbl-128/s_nearbyintl.c | 4 +-
sysdeps/m68k/coldfire/fpu/bits/mathinline.h | 44 -------
sysdeps/m68k/m680x0/fpu/bits/mathinline.h | 78 ------------
sysdeps/m68k/start.S | 2 +-
sysdeps/microblaze/start.S | 2 +-
sysdeps/powerpc/bits/mathinline.h | 60 ---------
sysdeps/s390/fpu/bits/mathinline.h | 34 -----
sysdeps/sparc/fpu/bits/mathinline.h | 153 -----------------------
sysdeps/sparc/sparc32/start.S | 4 +-
sysdeps/sparc/sparc64/start.S | 4 +-
sysdeps/tile/bits/mathinline.h | 44 -------
sysdeps/x86/fpu/bits/mathinline.h | 131 -------------------
24 files changed, 120 insertions(+), 812 deletions(-)
delete mode 100644 sysdeps/alpha/fpu/bits/mathinline.h
delete mode 100644 sysdeps/ia64/fpu/bits/mathinline.h
delete mode 100644 sysdeps/m68k/coldfire/fpu/bits/mathinline.h
delete mode 100644 sysdeps/tile/bits/mathinline.h
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository glibc.
from 4d3693ec1c Remove ancient __signbit inlines
new 4088d8dd29 x86: Allow undefined _DYNAMIC in static executable
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
ChangeLog | 7 +++++++
sysdeps/i386/dl-machine.h | 11 +++++++++--
sysdeps/x86_64/dl-machine.h | 11 +++++++++--
3 files changed, 25 insertions(+), 4 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from dfc0d5fadca [Hexagon] Fix some Clang-tidy modernize and Include What Yo [...]
new 86b6138b9a6 [llvm-rc] Add VERSIONINFO parsing ability. [6/8]
new df99c09b49c bpf: fix a bug for disassembling ld_pseudo inst
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
lib/Target/BPF/Disassembler/BPFDisassembler.cpp | 3 +-
.../llvm-rc/Inputs/parser-correct-everything.rc | 33 +++++++
.../llvm-rc/Inputs/parser-versioninfo-bad-type.rc | 4 +
.../Inputs/parser-versioninfo-named-main-block.rc | 4 +
.../Inputs/parser-versioninfo-repeated-fixed.rc | 6 ++
.../parser-versioninfo-unnamed-inner-block.rc | 4 +
.../Inputs/parser-versioninfo-unnamed-value.rc | 7 ++
.../Inputs/parser-versioninfo-wrong-fixed.rc | 3 +
test/tools/llvm-rc/parser.test | 58 ++++++++++++
tools/llvm-rc/ResourceScriptParser.cpp | 75 ++++++++++++++++
tools/llvm-rc/ResourceScriptParser.h | 10 +++
tools/llvm-rc/ResourceScriptStmt.cpp | 72 +++++++++++++++
tools/llvm-rc/ResourceScriptStmt.h | 100 +++++++++++++++++++++
13 files changed, 378 insertions(+), 1 deletion(-)
create mode 100644 test/tools/llvm-rc/Inputs/parser-versioninfo-bad-type.rc
create mode 100644 test/tools/llvm-rc/Inputs/parser-versioninfo-named-main-block.rc
create mode 100644 test/tools/llvm-rc/Inputs/parser-versioninfo-repeated-fixed.rc
create mode 100644 test/tools/llvm-rc/Inputs/parser-versioninfo-unnamed-inner-block.rc
create mode 100644 test/tools/llvm-rc/Inputs/parser-versioninfo-unnamed-value.rc
create mode 100644 test/tools/llvm-rc/Inputs/parser-versioninfo-wrong-fixed.rc
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.