aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/aarch64/madd_after_asm_1.c
diff options
context:
space:
mode:
authorCaroline Tice <cmtice@google.com>2016-02-29 22:49:18 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2016-02-29 22:49:18 +0000
commit3a800d7d75ceba88429096186a2150a2d938334a (patch)
tree9d9c36a627f01c31b077cd8253acc681d5cc4bbf /gcc-4.9/gcc/testsuite/gcc.target/aarch64/madd_after_asm_1.c
parentb9de1157289455b0ca26daff519d4a0ddcd1fa13 (diff)
parent817a788f9eb01eff367191401d48f2aaa8d4f428 (diff)
downloadtoolchain_gcc-3a800d7d75ceba88429096186a2150a2d938334a.tar.gz
toolchain_gcc-3a800d7d75ceba88429096186a2150a2d938334a.tar.bz2
toolchain_gcc-3a800d7d75ceba88429096186a2150a2d938334a.zip
Merge "Unify ChromeOS and Android versions of GCC."
Diffstat (limited to 'gcc-4.9/gcc/testsuite/gcc.target/aarch64/madd_after_asm_1.c')
-rw-r--r--gcc-4.9/gcc/testsuite/gcc.target/aarch64/madd_after_asm_1.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/gcc-4.9/gcc/testsuite/gcc.target/aarch64/madd_after_asm_1.c b/gcc-4.9/gcc/testsuite/gcc.target/aarch64/madd_after_asm_1.c
index 321d8f002..523941d47 100644
--- a/gcc-4.9/gcc/testsuite/gcc.target/aarch64/madd_after_asm_1.c
+++ b/gcc-4.9/gcc/testsuite/gcc.target/aarch64/madd_after_asm_1.c
@@ -12,17 +12,3 @@ test (int a, double b, int c, int d, int e)
);
return c * d + e;
}
-/* { dg-do assemble } */
-/* { dg-options "-O2 -mfix-cortex-a53-835769" } */
-
-int
-test (int a, double b, int c, int d, int e)
-{
- double result;
- __asm__ __volatile ("// %0, %1"
- : "=w" (result)
- : "0" (b)
- : /* No clobbers */
- );
- return c * d + e;
-}