- Nov 04, 2012
-
-
Tobias Grosser authored
Use 'opt < %s' instead of just 'opt %s' to ensure that no temporary files are created. llvm-svn: 167372
-
Duncan Sands authored
I'm applying it anyway since it seems to be obviously correct. llvm-svn: 167370
-
Lang Hames authored
llvm-svn: 167369
-
Craig Topper authored
llvm-svn: 167366
-
Jason Molenda authored
The operator== method is a synonym for IsExactMatch(). The essential difference between these two is that IsCompatibleMatch() will say that armv7 and armv7s are compatible and return true. IsExactMatch() will say that armv7 and armv7s are not a match. An armv7s cpu can run either generic armv7 binaries or armv7s binaries (the latter being tuned for it). When we're picking the slice of a universal Mach-O file to load in an armv7s Target, we need to be able to first look for an exact cpu subtype match (armv7s == armv7s) and failing that, looking for a slice with a compatible architecture. Update ObjectContainerUniversalMachO::GetObjectFile to prefer an exact match of the cpu type, falling back to a compatible match if necessary. <rdar://problem/12593515> llvm-svn: 167365
-
Seth Cantrell authored
the ellipsis is shorter than the text it replaces llvm-svn: 167364
-
- Nov 03, 2012
-
-
Lang Hames authored
compound statement. llvm-svn: 167363
-
Dmitri Gribenko authored
checking against a blacklist. llvm-svn: 167362
-
Seth Cantrell authored
llvm-svn: 167361
-
Seth Cantrell authored
llvm-svn: 167360
-
Benjamin Kramer authored
llvm-svn: 167359
-
Dmitri Gribenko authored
llvm-svn: 167358
-
Dmitri Gribenko authored
llvm-svn: 167357
-
Duncan Sands authored
is that the unit test doesn't have IntTy equal to APInt, instead it uses a class derived from APInt. When, as in these lines, an IntTy& reference is returned but is assigned to an APInt&, the compiler destroys the temporary the IntTy& was referring to, leaving the APInt& referring to garbage. This causes the unittest to fail systematically on my machine; it can also be caught by running the test under valgrind. llvm-svn: 167356
-
NAKAMURA Takumi authored
0 (as nullptr) is incompatible to pointer in type matching on msvc. llvm-svn: 167355
-
Duncan Sands authored
also do it for vectors of pointers. llvm-svn: 167354
-
Eli Friedman authored
caret locations and source ranges in macros. Makes ranges more accurate in some cases, and fixes an assertion failure. Fixes <rdar://problem/12472249>. llvm-svn: 167353
-
Anna Zaks authored
This will simplify checkers that need to register for leaks. Currently, they have to register for both: check dead and check end of path. I've modified the SymbolReaper to consider everything on the stack dead if the input StackLocationContext is 0. (This is a bit disruptive, so I'd like to flash out all the issues asap.) llvm-svn: 167352
-
Anna Zaks authored
llvm-svn: 167351
-
Anna Zaks authored
Node builders should manage the nodes, not the context. llvm-svn: 167350
-
Jim Ingham authored
Fix a little think-o. In FileSpec::operator== we were trying to figure out whether the rhs file was resolved or not by comparing the resolved version of the rhs FileSpec's directory name with the lhs FileSpec's directory name. We really meant to compare it with the rhs FileSpec's directory name... <rdar://problem/12438838> llvm-svn: 167349
-
Akira Hatanaka authored
instructions. llvm-svn: 167348
-
Nadav Rotem authored
llvm-svn: 167347
-
David Blaikie authored
llvm-svn: 167346
-
Akira Hatanaka authored
llvm-svn: 167345
-
Owen Anderson authored
Be careful not to optimize a SELECT_CC into a SETCC post-legalization if the SETCC node would be illegal. llvm-svn: 167344
-
Greg Clayton authored
Make sure users know that "target variable" can read variables while running a process by changing the documentation string. llvm-svn: 167343
-
Enrico Granata authored
llvm-svn: 167342
-
Akira Hatanaka authored
register is needed. llvm-svn: 167341
-
Jordan Rose authored
llvm-svn: 167340
-
Jordan Rose authored
llvm-svn: 167339
-
Jordan Rose authored
These are CallEvent-equivalents of helpers already accessible in CheckerContext, as part of making it easier for new checkers to be written using CallEvent rather than raw CallExprs. llvm-svn: 167338
-
Jordan Rose authored
Also, Decls already carry a pointer to the ASTContext, so there's no need to pass an extra argument to the predicate. llvm-svn: 167337
-
David Blaikie authored
llvm-svn: 167336
-
Akira Hatanaka authored
reserved. Without this fix, RegScavenger::getRegsAvailable incorrectly returns an empty set of integer registers. llvm-svn: 167335
-
David Blaikie authored
llvm-svn: 167334
-
Nadav Rotem authored
Add a stub for the x86 cost model impl. Implement a basic cost rule for inserting/extracting from XMM registers. llvm-svn: 167333
-
David Blaikie authored
llvm-svn: 167332
-
- Nov 02, 2012
-
-
Fariborz Jahanian authored
mrr mode. llvm-svn: 167331
-
Nadav Rotem authored
llvm-svn: 167330
-