- Jun 05, 2010
-
-
Chris Lattner authored
In file included from X86InstrInfo.cpp:16: X86GenInstrInfo.inc:2789: error: integer constant is too large for 'long' type X86GenInstrInfo.inc:2790: error: integer constant is too large for 'long' type X86GenInstrInfo.inc:2792: error: integer constant is too large for 'long' type X86GenInstrInfo.inc:2793: error: integer constant is too large for 'long' type X86GenInstrInfo.inc:2808: error: integer constant is too large for 'long' type X86GenInstrInfo.inc:2809: error: integer constant is too large for 'long' type X86GenInstrInfo.inc:2816: error: integer constant is too large for 'long' type X86GenInstrInfo.inc:2817: error: integer constant is too large for 'long' type llvm-svn: 105524
-
Bruno Cardoso Lopes authored
yet, only assembly encoding support. llvm-svn: 105521
-
Bruno Cardoso Lopes authored
llvm-svn: 105519
-
Jeffrey Yasskin authored
a member template, and you try to call the member template with an explicit template argument. See PR7247 For example, this downgrades the error to a warning in: template<typename T> struct set{}; struct Value { template<typename T> void set(T value) { } }; void foo() { Value v; v.set<double>(3.2); // Warning here. } llvm-svn: 105518
-
Dan Gohman authored
should be calling it. llvm-svn: 105517
-
Devang Patel authored
llvm-gcc enabled this couple of weeks ago. llvm-svn: 105516
-
Dale Johannesen authored
unless using -arm-tail-calls. llvm-svn: 105515
-
Dan Gohman authored
llvm-svn: 105514
-
Dan Gohman authored
llvm-svn: 105513
-
Stuart Hastings authored
llvm-svn: 105511
-
Dan Gohman authored
there could be multiple subexpressions within a single expansion which require insert point adjustment. This fixes PR7306. llvm-svn: 105510
-
Dale Johannesen authored
I don't think this ever resulted in problems on x86, but it would on ARM. llvm-svn: 105509
-
Dan Gohman authored
llvm-svn: 105508
-
Devang Patel authored
Radar 8055687. llvm-svn: 105505
-
John McCall authored
This is never null, but the associated type might be. llvm-svn: 105503
-
Evan Cheng authored
llvm-svn: 105502
-
Dan Gohman authored
register pressure. llvm-svn: 105501
-
Rafael Espindola authored
llvm-svn: 105500
-
-
Nate Begeman authored
llvm-svn: 105496
-
Devang Patel authored
llvm-svn: 105495
-
Anders Carlsson authored
When deciding whether reinterpret_cast casts away constness we need to look at array qualifiers. Fixes rdar://problem/8018292. llvm-svn: 105494
-
Stuart Hastings authored
llvm-svn: 105492
-
John McCall authored
I just implemented. llvm-svn: 105491
-
Devang Patel authored
Copy location info for current function argument from dbg.declare if respective store instruction does not have any location info. llvm-svn: 105490
-
- Jun 04, 2010
-
-
Nate Begeman authored
llvm-svn: 105489
-
Nate Begeman authored
llvm-svn: 105488
-
Fariborz Jahanian authored
class object in blocks and carry it to IRGen. llvm-svn: 105487
-
Dale Johannesen authored
llvm-svn: 105485
-
John McCall authored
llvm-svn: 105484
-
Jim Grosbach authored
llvm-svn: 105481
-
Dan Gohman authored
llvm-svn: 105480
-
Fariborz Jahanian authored
No functionality change yet. llvm-svn: 105479
-
John McCall authored
was given. Remove some unnecessary accounting from BlockScopeInfo. Handle typedef'ed function types until such time as we decide not. llvm-svn: 105478
-
Daniel Dunbar authored
arguments after translation, instead of the -cc1 level arguments. llvm-svn: 105476
-
Daniel Dunbar authored
added as the last output step, instead of just hacking it into the link step. - Among other things, this fixes dSYM generation when using multiple -arch options. llvm-svn: 105475
-
Daniel Dunbar authored
llvm-svn: 105474
-
Jakob Stoklund Olesen authored
register allocation. Process all of the clobber lists at the end of the function, marking the registers as used in MachineRegisterInfo. This is necessary in case the calls clobber callee-saved registers (sic). llvm-svn: 105473
-
Dale Johannesen authored
8060143, although this doesn't fix the real problem with tail call. llvm-svn: 105472
-
-