- Apr 09, 2010
-
-
Douglas Gregor authored
precompiled headers and/or when reading the contents of the file into memory. These checks seem to be causing spurious regression-test failures on Windows. llvm-svn: 100866
-
Fariborz Jahanian authored
for objc. llvm-svn: 100865
-
Daniel Dunbar authored
llvm-svn: 100864
-
Gabor Greif authored
llvm-svn: 100862
-
Dan Gohman authored
llvm-svn: 100860
-
Dan Gohman authored
llvm-svn: 100859
-
Dan Gohman authored
llvm-svn: 100858
-
Gabor Greif authored
llvm-svn: 100856
-
Chandler Carruth authored
llvm-svn: 100852
-
Bob Wilson authored
llvm-svn: 100850
-
Bob Wilson authored
llvm-svn: 100849
-
Chris Lattner authored
llvm-svn: 100848
-
Daniel Dunbar authored
llvm-svn: 100846
-
Dan Gohman authored
a separate function. llvm-svn: 100845
-
Sean Callanan authored
integrated into the llvm-mc testing tool. llvm-svn: 100842
-
Dan Gohman authored
llvm-svn: 100841
-
Dan Gohman authored
be sent to LSR, which it isn't prepared to handle. llvm-svn: 100839
-
Dan Gohman authored
llvm-svn: 100838
-
Chris Lattner authored
forced constant is changed to a constant, we would end up adding the instruction to the wrong worklist, preventing it from being properly revisited. This fixes rdar://7832370 llvm-svn: 100837
-
John McCall authored
valid instantiations. llvm-svn: 100836
-
Douglas Gregor authored
destination type for initialization, assignment, parameter-passing, etc. The main issue fixed here is that we used rather confusing wording for diagnostics such as t.c:2:9: warning: initializing 'char const [2]' discards qualifiers, expected 'char *' [-pedantic] char *name = __func__; ^ ~~~~~~~~ We're not initializing a 'char const [2]', we're initializing a 'char *' with an expression of type 'char const [2]'. Similar problems existed for other diagnostics in this area, so I've normalized them all with more precise descriptive text to say what we're initializing/converting/assigning/etc. from and to. The warning for the code above is now: t.c:2:9: warning: initializing 'char *' from an expression of type 'char const [2]' discards qualifiers [-pedantic] char *name = __func__; ^ ~~~~~~~~ Fixes <rdar://problem/7447179>. llvm-svn: 100832
-
Sean Callanan authored
state was being executed too lazily, and the LLVM assembly syntax for the disassembler was not being written into the proper disassembler state variable. llvm-svn: 100830
-
Dan Gohman authored
inputs happen to negate each other. llvm-svn: 100828
-
Ted Kremenek authored
platforms (for this test). llvm-svn: 100827
-
Dan Gohman authored
llvm-svn: 100825
-
Dan Gohman authored
llvm-svn: 100824
-
Ted Kremenek authored
This is still not an ideal solution, but should disable the check for other targets where the value of O_CREAT is different. llvm-svn: 100818
-
Douglas Gregor authored
llvm-svn: 100817
-
- Apr 08, 2010
-
-
Ted Kremenek authored
looking into an alternate fix right now. llvm-svn: 100816
-
Chris Lattner authored
llvm-svn: 100815
-
Douglas Gregor authored
warning. It's not harmful to have such pointless declarations, and GCC does not diagnose this issue consistently. llvm-svn: 100814
-
Fariborz Jahanian authored
of c-style arguments. Completes radar 7445205. llvm-svn: 100813
-
Chris Lattner authored
merge XCore's section into MCSectionELF llvm-svn: 100812
-
Johnny Chen authored
to avoid memcpy() call is no longer necessary. llvm-svn: 100811
-
Ted Kremenek authored
llvm-svn: 100810
-
Jeffrey Yasskin authored
variable declarations. llvm-svn: 100809
-
Chris Lattner authored
api and update clients to use MCContext instead. llvm-svn: 100808
-
Chris Lattner authored
the compiler and asmparser now unique to the same sections. This fixes rdar://7835021. llvm-svn: 100807
-
John McCall authored
Fixes PR6752. llvm-svn: 100806
-
Evan Cheng authored
%RDI<def,dead> = MOV64rr %RAX<kill>, %EDI<imp-def> llvm-svn: 100804
-