- Feb 24, 2011
-
-
Chris Lattner authored
to reduce nesting. This needs to be turned into a table. llvm-svn: 126366
-
Chris Lattner authored
magic integer arithmetic and allows it to work with types larger than 64 bits. llvm-svn: 126365
-
Chris Lattner authored
unneeded allocation of an empty StringLiteral when these don't have a message. llvm-svn: 126364
-
Chris Lattner authored
function prototype into a call to a varargs prototype. We do allow the xform if we have a definition, but otherwise we don't want to risk that we're changing the abi in a subtle way. On X86-64, for example, varargs require passing stuff in %al. llvm-svn: 126363
-
Ted Kremenek authored
Fix tiny error in CFG construction for BinaryConditionalOperators, making sure the branch always has two successors. Also teach Environment::getSVal() about OpaqueValueExprs. This fixes a crash reported in PR9287, and also fixes a false positive involving the value of such ternary expressions not properly getting propagated. llvm-svn: 126362
-
Chandler Carruth authored
characters get dropped into the regular expression from %t. llvm-svn: 126361
-
Douglas Gregor authored
llvm-svn: 126360
-
Evan Cheng authored
operands starts at index 2, not 1. rdar://9045024 PR9305 llvm-svn: 126359
-
Douglas Gregor authored
way it keeps track of namespaces. Previously, we would map from the namespace alias to its underlying namespace when building a nested-name-specifier, losing source information in the process. llvm-svn: 126358
-
Ken Dyck authored
methods, when they are known to be exact multiples of the width of the char type. llvm-svn: 126357
-
Ken Dyck authored
llvm-svn: 126356
-
Johnny Chen authored
llvm-svn: 126355
-
Ken Dyck authored
with getter and setter methods in both bit units and CharUnits. This will help simplify some of the unit mismatch in the parts of the code where sizes are known to be exact multiples of the width of the char type. Assertions in the getters help guard against accidentally converting to CharUnits when sizes are not exact multiples of the char width. llvm-svn: 126354
-
Jakob Stoklund Olesen authored
register. This avoids some silly stack slot shuffling when both sides of a copy get spilled. llvm-svn: 126353
-
Argyrios Kyrtzidis authored
llvm-svn: 126352
-
Argyrios Kyrtzidis authored
llvm-svn: 126351
-
Argyrios Kyrtzidis authored
llvm-svn: 126350
-
Michael J. Spencer authored
llvm-svn: 126348
-
Douglas Gregor authored
nested-name-specifier and source range to be set at the same time. llvm-svn: 126347
-
Douglas Gregor authored
with another component in the nested-name-specifiers, updating its representation (a NestedNameSpecifier) and source-location information (currently a SourceRange) simultaneously. This is groundwork for adding source-location information to nested-name-specifiers. llvm-svn: 126346
-
Chandler Carruth authored
don't seem to have been covered by our tests previously. This should fix bootstrap failure. llvm-svn: 126345
-
Chandler Carruth authored
to create it. Lit doesn't apparently clean up test directories effectively, and so this broke randomly on subsequent runs. Also XFAIL the test on windows, as there's not much hope for these commands doing the right thing there. Paired with Nick Lewycky. llvm-svn: 126344
-
Johnny Chen authored
llvm-svn: 126343
-
Chandler Carruth authored
expressions. Consider the code: int64_t i = 10 << 30; This compiles fine, but most developers expect it to produce the value for 10 gigs, not -2 gigs. This is actually undefined behavior because the LHS is a signed integer type. The warning is currently gated behind -Wshift-overflow. There is a special case where only the sign bit is overridden that gets a custom error message and is by default ignored. This case is much less likely to cause observed buggy behavior, it's just undefined behavior according to the spec. This warning can be enabled with -Wshift-sign-overflow. Original patch by Oleg Slezberg, with style tweaks and some correctness fixes by me. llvm-svn: 126342
-
Ted Kremenek authored
llvm-svn: 126341
-
- Feb 23, 2011
-
-
Devang Patel authored
Use DW_FORM_data2 for DW_AT_language and let users use DW_LANG_lo_user=0x8000 to DW_LANG_hi_user=0xffff range. llvm-svn: 126339
-
Devang Patel authored
llvm-svn: 126338
-
Jim Grosbach authored
llvm-svn: 126337
-
Jim Grosbach authored
enabled for all targets. Non-X86 targets should not have this behavior enabled by default. Joerg, if you would like to resubmit with the behavior conditionalized to be X86-ELF only, that's fine. llvm-svn: 126336
-
Johnny Chen authored
and rename the original ThumbImmScaled() function to ThumbImm7Scaled(). llvm-svn: 126335
-
Nick Lewycky authored
llvm-svn: 126334
-
Argyrios Kyrtzidis authored
llvm-svn: 126333
-
Argyrios Kyrtzidis authored
-Introduce EndOfFunctionNodeBuilder::withCheckerTag to allow it be "specialized" with a checker tag and not require the checkers to pass a tag. -For EndOfFunctionNodeBuilder::generateNode, reverse the order of tag/P parameters since there are actual calls that assume the second parameter is ExplodedNode. llvm-svn: 126332
-
Argyrios Kyrtzidis authored
llvm-svn: 126331
-
Rafael Espindola authored
Fixes PR9292. llvm-svn: 126330
-
Matt Beaumont-Gay authored
llvm-svn: 126328
-
Matt Beaumont-Gay authored
llvm-svn: 126327
-
Argyrios Kyrtzidis authored
llvm-svn: 126326
-
Argyrios Kyrtzidis authored
llvm-svn: 126325
-
Argyrios Kyrtzidis authored
llvm-svn: 126324
-