about summary refs log tree commit diff
path: root/src/test/run-pass/sse2.rs
AgeCommit message (Collapse)AuthorLines
2019-07-27tests: Move run-pass tests without naming conflicts to uiVadim Petrochenkov-26/+0
2019-07-27tests: Add missing run-pass annotationsVadim Petrochenkov-0/+1
2018-12-25Remove licensesMark Rousskov-10/+0
2018-12-09Bump minimum required LLVM version to 6.0Nikita Popov-3/+1
2018-09-21Allow various lints as part of ui-ifying `src/test/run-pass` suite.Felix S. Klock II-0/+1
2018-03-27Enable target_feature on any LLVM 6+Josh Stone-1/+5
In `LLVMRustHasFeature()`, rather than using `MCInfo->getFeatureTable()` that is specific to Rust's LLVM fork, we can use this in LLVM 6: /// Check whether the subtarget features are enabled/disabled as per /// the provided string, ignoring all other features. bool checkFeatures(StringRef FS) const; Now rustc using external LLVM can also have `target_feature`.
2018-01-30Ignore run-pass/sse2 when using system LLVMJosh Stone-1/+1
This is a test of `target_feature`, which needs a rust-specific patch to LLVM to add `MCSubtargetInfo::getFeatureTable()`.
2018-01-02Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI.Ed Schouten-0/+2
It looks like many of these tests are already disabled on emscripten, which also doesn't seem to support environment variables and subprocess spawning. Just add a similar tag for CloudABI. While there, sort some of the lists of operating systems alphabetically.
2017-07-28Make LLVMRustHasFeature more robustLuca Barbato-0/+1
The function should accept feature strings that old LLVM might not support. Simplify the code using the same approach used by LLVMRustPrintTargetFeatures. Dummify the function for non 4.0 LLVM and update the tests accordingly.
2017-01-20More test fixes from rollupAlex Crichton-4/+8
2017-01-15travis: Add i586 linux and i686 muslAlex Crichton-2/+9
This commit expands the existing x86_64-musl entry in the Travis matrix to also build/test i586-unknown-linux-gnu and i686-unknown-linux-musl. cc #38531 Closes #39053
2016-04-19Add test for `target_feature`Andrea Canciani-0/+18
This test checks that all of the x86 architectures (both `x86` and `x86_64`) have the `sse2` feature. This is currently true for all of the targets whose target CPU is `pentium4` (or better), but it might fail on other targets (for example on `i586`).