index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
clang
/
lib
/
AST
/
ExprConstant.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
[8.0 Regression] Fix handling of `__builtin_constant_p` inside template argum...
Eric Fiselier
2019-03-08
1
-0
/
+3
*
[ObjC] Emit a boxed expression as a compile-time constant if the
Akira Hatanaka
2019-03-08
1
-0
/
+4
*
Inline asm constraints: allow ICE-like pointers for the "n" constraint (PR40890)
Hans Wennborg
2019-03-06
1
-6
/
+5
*
[Fixed Point Arithmetic] Fixed Point and Integer Conversions
Leonard Chan
2019-03-06
1
-0
/
+30
*
[Fixed Point Arithmetic] Fixed Point Comparisons
Leonard Chan
2019-02-21
1
-0
/
+16
*
[Builtins] Treat `bcmp` as a builtin.
Clement Courbet
2019-02-14
1
-5
/
+11
*
Fix buildbot failure from r353569.
Eli Friedman
2019-02-09
1
-1
/
+8
*
[Sema] Make string literal init an rvalue.
Eli Friedman
2019-02-08
1
-44
/
+25
*
Add a new builtin: __builtin_dynamic_object_size
Erik Pilkington
2019-01-30
1
-0
/
+1
*
Update the file headers across all of the LLVM projects in the monorepo
Chandler Carruth
2019-01-19
1
-4
/
+3
*
[Fixed Point Arithmetic] Fixed Point Addition Constant Expression Evaluation
Leonard Chan
2019-01-18
1
-49
/
+148
*
[Fixed Point Arithmetic] Add APFixedPoint to APValue
Leonard Chan
2019-01-16
1
-0
/
+3
*
[AST] Remove ASTContext from getThisType (NFC)
Brian Gesiak
2019-01-11
1
-1
/
+1
*
[ExprConstant] Handle compound assignment when LHS has integral type and RHS ...
Tan S. B.
2018-12-18
1
-7
/
+19
*
[Clang] Add __builtin_launder
Eric Fiselier
2018-12-14
1
-1
/
+2
*
[ExprConstant] Improve memchr/memcmp for type mismatch and multibyte element ...
Hubert Tong
2018-12-12
1
-22
/
+133
*
[constexpr][c++2a] Try-catch blocks in constexpr functions
Bruno Cardoso Lopes
2018-12-10
1
-0
/
+3
*
Misc typos fixes in ./lib folder
Raphael Isemann
2018-12-10
1
-3
/
+3
*
Specify constant context in constant emitter
Bill Wendling
2018-12-01
1
-0
/
+1
*
Revert "Revert r347417 "Re-Reinstate 347294 with a fix for the failures.""
Fangrui Song
2018-11-30
1
-45
/
+102
*
Revert r347417 "Re-Reinstate 347294 with a fix for the failures."
Fangrui Song
2018-11-30
1
-102
/
+45
*
[ExprConstant] Try fixing __builtin_constant_p after D54355 (rC347417)
Fangrui Song
2018-11-30
1
-1
/
+0
*
Re-commit r347417 "Re-Reinstate 347294 with a fix for the failures."
Hans Wennborg
2018-11-28
1
-45
/
+103
*
Revert r347417 "Re-Reinstate 347294 with a fix for the failures."
Hans Wennborg
2018-11-27
1
-103
/
+45
*
A "constexpr" is evaluated in a constant context. Make sure this is reflected
Bill Wendling
2018-11-26
1
-0
/
+2
*
isEvaluatable() implies a constant context.
Bill Wendling
2018-11-24
1
-2
/
+4
*
Re-Reinstate 347294 with a fix for the failures.
Bill Wendling
2018-11-21
1
-43
/
+97
*
Revert r347364 again, the fix was incomplete.
Nico Weber
2018-11-21
1
-97
/
+43
*
Reinstate 347294 with a fix for the failures.
Bill Wendling
2018-11-20
1
-43
/
+97
*
Revert 347294, it turned many bots on lab.llvm.org:8011/console red.
Nico Weber
2018-11-20
1
-61
/
+24
*
Use is.constant intrinsic for __builtin_constant_p
Bill Wendling
2018-11-20
1
-24
/
+61
*
PR39628 Treat all non-zero values as 'true' in bool compound-assignment
Richard Smith
2018-11-12
1
-2
/
+3
*
Compound literals, enums, et al require const expr
Bill Wendling
2018-11-09
1
-0
/
+2
*
[OpenCL] Add support of cl_intel_device_side_avc_motion_estimation extension
Andrew Savonichev
2018-11-08
1
-0
/
+3
*
Revert r346326 [OpenCL] Add support of cl_intel_device_side_avc_motion_estima...
Andrew Savonichev
2018-11-07
1
-3
/
+0
*
[OpenCL] Add support of cl_intel_device_side_avc_motion_estimation extension
Andrew Savonichev
2018-11-07
1
-0
/
+3
*
Reapply Logging: make os_log buffer size an integer constant expression.
Tim Northover
2018-11-02
1
-0
/
+7
*
Revert "Reapply Logging: make os_log buffer size an integer constant expressi...
Tim Northover
2018-11-01
1
-7
/
+0
*
Reapply Logging: make os_log buffer size an integer constant expression.
Tim Northover
2018-11-01
1
-0
/
+7
*
Replace two fallthrough annotations after covered switch with unreachable
Reid Kleckner
2018-11-01
1
-4
/
+2
*
Revert "Logging: make os_log buffer size an integer constant expression.
Tim Northover
2018-11-01
1
-7
/
+0
*
Logging: make os_log buffer size an integer constant expression.
Tim Northover
2018-11-01
1
-0
/
+7
*
Create ConstantExpr class
Bill Wendling
2018-10-31
1
-2
/
+5
*
PR26547: alignof should return ABI alignment, not preferred alignment
Richard Smith
2018-10-26
1
-10
/
+27
*
[Fixed Point Arithmetic] Fixed Point to Boolean Cast
Leonard Chan
2018-10-23
1
-0
/
+9
*
[OpenCL][NFC] Unify ZeroToOCL* cast types
Andrew Savonichev
2018-10-23
1
-4
/
+2
*
[Diagnostics] Check for integer overflow in array size expressions
David Bolvansky
2018-10-18
1
-0
/
+13
*
[Fixed Point Arithmetic] FixedPointCast
Leonard Chan
2018-10-15
1
-0
/
+2
*
ExprConstant: Make __builtin_object_size use EM_IgnoreSideEffects.
James Y Knight
2018-10-10
1
-24
/
+7
*
Emit CK_NoOp casts in C mode, not just C++.
James Y Knight
2018-10-05
1
-5
/
+1
[next]