aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorTim Northover <tnorthover@apple.com>2013-12-09 11:21:49 +0000
committerTim Northover <tnorthover@apple.com>2013-12-09 11:21:49 +0000
commitf5ad2eadeb5f2d7547663f2c12464ad0fdb91979 (patch)
tree531d655f17366f1c0f47c36ae070167ca02b546d /test
parentc54c885099ddbe81445ec58d8c12c97086569a91 (diff)
downloadclang-f5ad2eadeb5f2d7547663f2c12464ad0fdb91979.tar.gz
Remove stray parts of (reverted on trunk) r196205 that are causing test
failures. git-svn-id: https://llvm.org/svn/llvm-project/cfe/branches/release_34@196774 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CodeGen/aarch64-neon-intrinsics.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/CodeGen/aarch64-neon-intrinsics.c b/test/CodeGen/aarch64-neon-intrinsics.c
index 7708572a9c..6e9b7f10b3 100644
--- a/test/CodeGen/aarch64-neon-intrinsics.c
+++ b/test/CodeGen/aarch64-neon-intrinsics.c
@@ -5730,12 +5730,6 @@ float64_t test_vcvtd_f64_s64(int64_t a) {
return vcvtd_f64_s64(a);
}
-float64_t test_vcvt_f64_s64(int64_t a) {
-// CHECK: test_vcvt_f64_s64
-// CHECK: scvtf {{d[0-9]+}}, {{d[0-9]+}}
- return vcvt_f64_s64(a);
-}
-
float32_t test_vcvts_f32_u32(uint32_t a) {
// CHECK: test_vcvts_f32_u32
// CHECK: ucvtf {{s[0-9]+}}, {{s[0-9]+}}
@@ -5748,12 +5742,6 @@ float64_t test_vcvtd_f64_u64(uint64_t a) {
return vcvtd_f64_u64(a);
}
-float64_t test_vcvt_f64_u64(uint64_t a) {
-// CHECK: test_vcvt_f64_u64
-// CHECK: ucvtf {{d[0-9]+}}, {{d[0-9]+}}
- return vcvt_f64_u64(a);
-}
-
float32_t test_vrecpes_f32(float32_t a) {
// CHECK: test_vrecpes_f32
// CHECK: frecpe {{s[0-9]+}}, {{s[0-9]+}}
@@ -11345,12 +11333,6 @@ float64_t test_vabdd_f64(float64_t a, float64_t b) {
return vabdd_f64(a, b);
}
-float64_t test_vabd_f64(float64_t a, float64_t b) {
-// CHECK-LABEL: test_vabd_f64
-// CHECK: fabd {{d[0-9]+}}, {{d[0-9]+}}, {{d[0-9]+}}
- return vabd_f64(a, b);
-}
-
int64x1_t test_vuqadd_s64(int64x1_t a, uint64x1_t b) {
// CHECK-LABEL: test_vuqadd_s64
return vuqadd_s64(a, b);