[clang] fe177a1 - Fix assertion when passing function into inline asm's input operand

2021-08-27 Thread Jason Liu via cfe-commits
Author: Jason Liu Date: 2021-08-27T13:39:41-04:00 New Revision: fe177a1773e4f88dde1aa37d34a0d3f8cb582f14 URL: https://github.com/llvm/llvm-project/commit/fe177a1773e4f88dde1aa37d34a0d3f8cb582f14 DIFF: https://github.com/llvm/llvm-project/commit/fe177a1773e4f88dde1aa37d34a0d3f8cb582f14.diff

r356208 - Reland the rest of "Add AIX Target Info"

2019-03-14 Thread Jason Liu via cfe-commits
Author: jasonliu Date: Thu Mar 14 14:54:30 2019 New Revision: 356208 URL: http://llvm.org/viewvc/llvm-project?rev=356208=rev Log: Reland the rest of "Add AIX Target Info" llvm-svn 356197 relanded previously failing test case max_align.c. This commit will reland the rest of llvm-svn 356060

r356197 - Reland part of "Add AIX Target Info"

2019-03-14 Thread Jason Liu via cfe-commits
Author: jasonliu Date: Thu Mar 14 13:27:39 2019 New Revision: 356197 URL: http://llvm.org/viewvc/llvm-project?rev=356197=rev Log: Reland part of "Add AIX Target Info" This patch reland the test case max_align.c which is failing at Windows and PS4 platform in the previous commit. Differential

r356070 - Revert "Add AIX Target Info"

2019-03-13 Thread Jason Liu via cfe-commits
Author: jasonliu Date: Wed Mar 13 10:57:23 2019 New Revision: 356070 URL: http://llvm.org/viewvc/llvm-project?rev=356070=rev Log: Revert "Add AIX Target Info" This reverts commit 4e192d0e1e72ce32fabf1bccc06ac31ab5385e78. The newly added test case max_align.c do not work on all platforms.

r356060 - Add AIX Target Info

2019-03-13 Thread Jason Liu via cfe-commits
Author: jasonliu Date: Wed Mar 13 09:02:26 2019 New Revision: 356060 URL: http://llvm.org/viewvc/llvm-project?rev=356060=rev Log: Add AIX Target Info Summary: A first pass over platform-specific properties of the C API/ABI on AIX for both 32-bit and 64-bit modes. This is a continuation of D18360

r355989 - Add XCOFF triple object format type for AIX

2019-03-12 Thread Jason Liu via cfe-commits
Author: jasonliu Date: Tue Mar 12 15:01:10 2019 New Revision: 355989 URL: http://llvm.org/viewvc/llvm-project?rev=355989=rev Log: Add XCOFF triple object format type for AIX This patch adds an XCOFF triple object format type into LLVM. This XCOFF triple object file type will be used later by

[PATCH] D13289: [libc++] Provide additional templates for valarray transcendentals that satisfy the standard synopsis

2016-11-22 Thread Jason Liu via cfe-commits
jasonliu added a comment. Ping. Any review for this patch? It would be great if we can get this issue fixed. https://reviews.llvm.org/D13289 ___ cfe-commits mailing list cfe-commits@lists.llvm.org

Re: [PATCH] D22702: [libcxx]Missing default argument for flag_type parameter in one of std::basic_regex constructors

2016-08-05 Thread Jason Liu via cfe-commits
jasonliu marked an inline comment as done. jasonliu added a comment. Gentle ping? https://reviews.llvm.org/D22702 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Re: [PATCH] D22702: [libcxx]Missing default argument for flag_type parameter in one of std::basic_regex constructors

2016-07-29 Thread Jason Liu via cfe-commits
jasonliu marked an inline comment as done. Comment at: test/std/re/re.regex/re.regex.construct/ptr_size.pass.cpp:31 @@ +30,3 @@ +test("\\(a\\)", 5, 0); +test("\\(a[bc]\\)", 9, 0); +test("\\(a\\([bc]\\)\\)", 13, 0); Comment addressed in the new patch.

Re: [PATCH] D22702: [libcxx]Missing default argument for flag_type parameter in one of std::basic_regex constructors

2016-07-29 Thread Jason Liu via cfe-commits
jasonliu updated this revision to Diff 66153. jasonliu added a comment. Address @hubert.reinterpretcast 's comment about the test case. Added more cases to test "size" parameter in the constructor. https://reviews.llvm.org/D22702 Files: include/regex

Re: [PATCH] D22698: [libcxx] Missing member types 'traits_type' and 'string_type' in class basic_regex

2016-07-29 Thread Jason Liu via cfe-commits
jasonliu added a comment. Ping? https://reviews.llvm.org/D22698 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[PATCH] D22702: [libcxx]Missing default argument for flag_type parameter in one of std::basic_regex constructors

2016-07-22 Thread Jason Liu via cfe-commits
jasonliu created this revision. jasonliu added reviewers: mclow.lists, rsmith, hubert.reinterpretcast. jasonliu added a subscriber: cfe-commits. Standard 28.8 p3 indicates the 3-argument constructor have a default argument for flag_type parameter: basic_regex(const charT* p, size_t len,

[PATCH] D22698: [libcxx] Missing member types 'traits_type' and 'string_type' in class basic_regex

2016-07-22 Thread Jason Liu via cfe-commits
jasonliu created this revision. jasonliu added reviewers: mclow.lists, rsmith, hubert.reinterpretcast. jasonliu added a subscriber: cfe-commits. In standard 28.8 p3, class basic_regex is supposed to have 'traits_type' and 'string_type' as its member types. However, they are missing from the