- Oct 26, 2009
-
-
Sanjiv Gupta authored
llvm-svn: 85134
-
Sebastian Redl authored
llvm-svn: 85133
-
Daniel Dunbar authored
llvm-svn: 85132
-
Chandler Carruth authored
llvm-svn: 85131
-
Devang Patel authored
llvm-svn: 85130
-
Sebastian Redl authored
llvm-svn: 85129
-
Benjamin Kramer authored
llvm-svn: 85128
-
David Goodwin authored
llvm-svn: 85127
-
Devang Patel authored
Patch by Talin! llvm-svn: 85126
-
Douglas Gregor authored
llvm-svn: 85125
-
Dan Gohman authored
llvm-svn: 85120
-
Chris Lattner authored
All of the 'demorgan' related xforms need to use dyn_castNotVal, not m_Not. llvm-svn: 85119
-
Dan Gohman authored
strides for now, because it doesn't handle them correctly. This fixes a miscompile of SingleSource/Benchmarks/Misc-C++/ray. This problem was usually hidden because indvars transforms such induction variables into negations of canonical induction variables. llvm-svn: 85118
-
Sebastian Redl authored
llvm-svn: 85117
-
Rafael Espindola authored
llvm-svn: 85116
-
Zhongxing Xu authored
warnings. Eventually we need a way to import externally defined functions summaries. llvm-svn: 85092
-
Evan Cheng authored
bootstrapping. It's not safe to leave identity subreg_to_reg and insert_subreg around. - Relax register scavenging to allow use of partially "not-live" registers. It's common for targets to operate on registers where the top bits are undef. e.g. s0 = d0 = insert_subreg d0<undef>, s0, 1 ... = d0 When the insert_subreg is eliminated by the coalescer, the scavenger used to complain. The previous fix was to keep to insert_subreg around. But that's brittle and it's overly conservative when we want to use the scavenger to allocate registers. It's actually legal and desirable for other instructions to use the "undef" part of d0. e.g. s0 = d0 = insert_subreg d0<undef>, s0, 1 ... s1 = = s1 = d0 We probably need add a "partial-undef" marker on machine operand so the machine verifier would not complain. llvm-svn: 85091
-
Evan Cheng authored
llvm-svn: 85090
-
Edward O'Callaghan authored
llvm-svn: 85088
-
Chandler Carruth authored
llvm-svn: 85087
-
Chandler Carruth authored
direct inclusion edge from System to Support. llvm-svn: 85086
-
Chris Lattner authored
not (or (icmp, icmp)) -> and(icmp, icmp) llvm-svn: 85085
-
Chandler Carruth authored
llvm-svn: 85084
-
Chris Lattner authored
llvm-svn: 85083
-
Chandler Carruth authored
llvm-svn: 85082
-
Chris Lattner authored
or global after a function with conflicting names. Update some testcases that were accidentally depending on this behavior. llvm-svn: 85081
-
Daniel Dunbar authored
llvm-svn: 85079
-
Daniel Dunbar authored
llvm-svn: 85078
-
Chris Lattner authored
functions it should just look them up like declarations. llvm-svn: 85077
-
- Oct 25, 2009
-
-
Chris Lattner authored
llvm-svn: 85076
-
Chris Lattner authored
declared noreturn. llvm-svn: 85075
-
Chandler Carruth authored
llvm-svn: 85074
-
-
Sebastian Redl authored
llvm-svn: 85072
-
Chris Lattner authored
process decl attributes instead of dropping them on the floor. This allows us to diagnose cases like the testcase. Also don't diagnose deprecated stuff in ActOnTag: not all uses of tags may be 'uses', and SemaType does this now. llvm-svn: 85071
-
Chris Lattner authored
types) out of Sema::getTypeName into ConvertDeclSpecToType. getTypeName is sometimes used as a predicate in the parser, so it could cause redundant diags to be emitted. This is also needed by two upcoming enhancements. llvm-svn: 85070
-
Chris Lattner authored
llvm-svn: 85069
-
Sebastian Redl authored
Remove the Skip parameter from GetTypeForDeclarator and dependents. Take the opportunity to improve an error message and fix PR4498. llvm-svn: 85068
-
Chris Lattner authored
llvm-svn: 85067
-
Daniel Dunbar authored
will have \r\n. - Perhaps we should make FileCheck normalize line-endings, even in strict-whitespace mode? llvm-svn: 85066
-