- Feb 16, 2005
-
-
Reid Spencer authored
llvm-svn: 20213
-
Jeff Cohen authored
llvm-svn: 20212
-
Jeff Cohen authored
llvm-svn: 20211
-
Jeff Cohen authored
llvm-svn: 20208
-
Tanya Lattner authored
llvm-svn: 20207
-
- Feb 15, 2005
-
-
Chris Lattner authored
for the suggestion! :) llvm-svn: 20203
-
Chris Lattner authored
llvm-svn: 20202
-
Misha Brukman authored
llvm-svn: 20201
-
Reid Spencer authored
handling zero length files a little more intelligently. If both files are zero length then we return 0 (true) indicating a match. If only one of the files is zero length then we return 1 (false) indicating that the files differ. If the files don't agree in length then they can't match so we skip the first loop that looks for a quick match. llvm-svn: 20200
-
Andrew Lenharth authored
llvm-svn: 20198
-
Chris Lattner authored
to save and restore the LR register on entry and exit of a leaf function that needed to access globals or the constant pool. This should hopefully fix oscar from sending the PPC tester spinning out of control. llvm-svn: 20197
-
Chris Lattner authored
llvm-svn: 20195
-
Chris Lattner authored
llvm-svn: 20194
-
Chris Lattner authored
llvm-svn: 20193
-
Chris Lattner authored
void %test(int** %P) { %A = volatile load int** %P ret void } void %test2(int*** %Q) { %P = load int*** %Q volatile store int** %P, int*** %Q ret void } instead of emitting: void test(int **l1_P) { int *l2_A; l2_A = (int **((volatile int **)l1_P)); return; } void test2(int ***l2_Q) { int **l1_P; l1_P = *l2_Q; *((volatile int ***)l2_Q) = l1_P; return; } ... which is loading/storing volatile pointers, not through volatile pointers, emit this (which is right): void test(int **l1_P) { int *l3_A; l3_A = *((int * volatile*)l1_P); return; } void test2(int ***l2_Q) { int **l1_P; l1_P = *l2_Q; *((int ** volatile*)l2_Q) = l1_P; return; } llvm-svn: 20191
-
Chris Lattner authored
llvm-svn: 20190
-
Chris Lattner authored
llvm-svn: 20189
-
- Feb 14, 2005
-
-
Chris Lattner authored
llvm-svn: 20187
-
Chris Lattner authored
llvm-svn: 20186
-
Reid Spencer authored
When llvm-gcc is not available, bypass rules for Modules and Bytecode Libraries that require llvm-gcc and emit instead a warning that llvm-gcc is not available. This permits "make LLVMGCC=" to build LLVM completely without error and provides warnings about the modules and bc libs that could not be constructed. llvm-svn: 20185
-
Chris Lattner authored
llvm-svn: 20184
-
Chris Lattner authored
prints: getelementptr (int* %A, int -1) as: "(A) - 4" instead of "(A) + 18446744073709551612", which makes the assembler much happier. This fixes test/Regression/CodeGen/X86/2005-02-14-IllegalAssembler.ll, and Benchmarks/Prolangs-C/cdecl with LLC on X86. llvm-svn: 20183
-
Chris Lattner authored
llvm-svn: 20182
-
Chris Lattner authored
llvm-svn: 20181
-
Chris Lattner authored
printing help output or version info. llvm-svn: 20180
-
Misha Brukman authored
llvm-svn: 20179
-
Chris Lattner authored
llvm-svn: 20178
-
Chris Lattner authored
Volatile loads and stores need to emit volatile pointer operations in C. llvm-svn: 20177
-
Chris Lattner authored
llvm-svn: 20176
-
Reid Spencer authored
required by changes to the Makefile.rules. Patch contributed by Vladimir Merzliakov. llvm-svn: 20175
-
Reid Spencer authored
Vladimir Merzliakov. llvm-svn: 20174
-
Misha Brukman authored
llvm-svn: 20173
-
Andrew Lenharth authored
llvm-svn: 20172
-
Chris Lattner authored
llvm-svn: 20171
-
Chris Lattner authored
llvm-svn: 20170
-
Chris Lattner authored
llvm-svn: 20169
-
Chris Lattner authored
llvm-svn: 20168
-
Chris Lattner authored
llvm-svn: 20167
-
Chris Lattner authored
llvm-svn: 20166
-
- Feb 13, 2005
-
-
Chris Lattner authored
This causes garbage to be printed out after error messages. llvm-svn: 20165
-