- May 21, 2013
-
-
Peter Collingbourne authored
llvm-svn: 182372
-
Elena Demikhovsky authored
Removed SSEPacked domain from all forms (AVX, SSE, signed, unsigned) scalar compare instructions, like COMISS, COMISD. No functional changes. llvm-svn: 182371
-
Tobias Grosser authored
It was initially committed to allow people to get a list of the files used or generated in the matmul tutorial. Since the documentation does now point people to the directory in their git checkout, it is not necessary anymore to make a directory listing available. Especially, as this never worked and recently the LLVM web server does not deliver files in this directory at all due to the unsupported .htaccess file. llvm-svn: 182370
-
Peter Collingbourne authored
llvm-svn: 182369
-
Benjamin Kramer authored
llvm-svn: 182368
-
Ulrich Weigand authored
Alternative fix for problem addressed in r182233 Revision r182233 partially reverted the change in r181200 to simplify JIT unif test #ifdefs, because that change caused a link error on some host operating systems where the export list requires the following symbols to be defined: JITTest_AvailableExternallyFunction JITTest_AvailableExternallyGlobal As discussed on the list, the commit reverts r182233 (and re-installs the full r181200 change), and instead fixes the link problem by moving those two symbols to the top of the file and unconditionally defining them. llvm-svn: 182367
-
Peter Collingbourne authored
llvm-svn: 182366
-
Alexey Samsonov authored
llvm-svn: 182365
-
Benjamin Kramer authored
Otherwise we'll get a mix of signed and unsigned compares. Fixes PR15977. llvm-svn: 182364
-
Alexey Samsonov authored
[ASan] Don't run fast unwinder tests on 32-bit Linux as fast unwinder may be unexpectedly smart on some hosts llvm-svn: 182363
-
Daniel Jasper authored
Before: void someLongFunction( int someLongParameter) const; After: void someLongFunction(int someLongParameter) const; Also slightly cleanup tests. llvm-svn: 182362
-
Evgeniy Stepanov authored
llvm-svn: 182361
-
Alexey Samsonov authored
llvm-svn: 182360
-
Evgeniy Stepanov authored
llvm-svn: 182359
-
Richard Sandiford authored
After r182274, the branches in these tests must always be short. llvm-svn: 182358
-
Benjamin Kramer authored
Fixes PR16083. llvm-svn: 182357
-
Richard Sandiford authored
llvm-svn: 182356
-
Alexey Samsonov authored
llvm-svn: 182355
-
Dmitry Vyukov authored
llvm-svn: 182354
-
Evgeniy Stepanov authored
llvm-svn: 182353
-
Kostya Serebryany authored
[sanitizer] fix asan on the platforms where the page size is not a compile-time constant (or at least where EXEC_PAGESIZE may not be trustworthy), e.g. powerpc64. llvm-svn: 182351
-
Richard Smith authored
attach, rather than merging all comments on the declaration chain. This gives a more faithful dump, and has the side benefit of unbreaking uses of dump() from within AST deserialization (where the redeclaration chain may not be sane). llvm-svn: 182350
-
Eric Christopher authored
llvm-svn: 182349
-
Eric Christopher authored
type signature computation. llvm-svn: 182348
-
Reed Kotler authored
These were accidentally omitted. llvm-svn: 182347
-
rdar://problem/13892516Greg Clayton authored
LLDB can now debug across calls to exec when the architecture changes from say i386 to x86_64 (on darwin). llvm-svn: 182345
-
Manman Ren authored
This is to fix PR15408 where an undefined symbol Lline_table_start1 is used. Since we do not generate the debug_line section when .loc is used, Lline_table_start1 is not emitted and we can't refer to it when calculating at_stmt_list for a compile unit. llvm-svn: 182344
-
Reed Kotler authored
pic calls. These need to be there so we don't try and use helper functions when we call those. As part of this, make sure that we properly exclude helper functions in pic mode when indirect calls are involved. llvm-svn: 182343
-
Ted Kremenek authored
Fixes <rdar://problem/13942300>. llvm-svn: 182342
-
Enrico Granata authored
Thanks to Greg Clayton for catching this llvm-svn: 182339
-
Enrico Granata authored
There are two settings: target.load-script-from-symbol-file is a boolean that says load or no load (default: false) target.warn-on-script-from-symbol-file is also a boolean, it says whether you want to be warned when a script file is not loaded due to security (default: true) the auto loading on change for target.load-script-from-symbol-file is preserved llvm-svn: 182336
-
Richard Smith authored
"triples". Also remove the implication that they're only used for specifying a target. llvm-svn: 182335
-
Fariborz Jahanian authored
@class command on an @interface declaration. Turn off the warning for this case. // rdar://13927330 llvm-svn: 182334
-
Richard Smith authored
llvm-svn: 182333
-
Sean Silva authored
Describe that they are assigned numbered label using the same counter as for unnamed temporaries. Based on http://llvm.org/bugs/show_bug.cgi?id=16043 and mailing list discussion. Patch by Paul Sokolovsky! llvm-svn: 182332
-
Richard Smith authored
nonexistent Darwin-specific files on every module build. llvm-svn: 182331
-
rdar://problem/13925626Enrico Granata authored
Correctly handle the case of a ValueObjectVariable backed by a Vector llvm-svn: 182330
-
David Blaikie authored
This resolves the last of the PR14606 failures in the GDB 7.5 test suite. (but there are still unresolved issues in the imported_decl case - we need to implement optional/lazy decls for functions & variables like we already do for types) llvm-svn: 182329
-
David Blaikie authored
This resolves the last of the PR14606 failures in the GDB 7.5 test suite by implementing an optional name field for DW_TAG_imported_modules/DIImportedEntities and using that to implement C++ namespace aliases (eg: "namespace X = Y;"). llvm-svn: 182328
-
rdar://problem/13925626Enrico Granata authored
Replacing an assertion with an error - at least we won’t crash llvm-svn: 182326
-