diff options
| author | Colin LeMahieu <colinl@codeaurora.org> | 2015-01-15 16:30:07 +0000 |
|---|---|---|
| committer | Colin LeMahieu <colinl@codeaurora.org> | 2015-01-15 16:30:07 +0000 |
| commit | 7959cac7253100cce4246fea9a460e23ca70bc5c (patch) | |
| tree | 6f725e476c590a6bb59be6b696cfdf14e59455c8 /llvm/test/CodeGen | |
| parent | bc14dd46f26ae3bfe434dd56a7c12272389530f8 (diff) | |
| download | bcm5719-llvm-7959cac7253100cce4246fea9a460e23ca70bc5c.tar.gz bcm5719-llvm-7959cac7253100cce4246fea9a460e23ca70bc5c.zip | |
[Hexagon] Replacing old fadd/fsub instructions and updating references.
llvm-svn: 226176
Diffstat (limited to 'llvm/test/CodeGen')
| -rw-r--r-- | llvm/test/CodeGen/Hexagon/dadd.ll | 2 | ||||
| -rw-r--r-- | llvm/test/CodeGen/Hexagon/dsub.ll | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/Hexagon/dadd.ll b/llvm/test/CodeGen/Hexagon/dadd.ll index 602978ac01d..a86a90c89a1 100644 --- a/llvm/test/CodeGen/Hexagon/dadd.ll +++ b/llvm/test/CodeGen/Hexagon/dadd.ll @@ -1,7 +1,7 @@ ; RUN: llc -march=hexagon -mcpu=hexagonv5 < %s | FileCheck %s ; Check that we generate double precision floating point add in V5. -; CHECK: r{{[0-9]+}}:{{[0-9]+}} = dfadd(r{{[0-9]+}}:{{[0-9]+}}, r{{[0-9]+}}:{{[0-9]+}}) +; CHECK: call __hexagon_adddf3 define i32 @main() nounwind { diff --git a/llvm/test/CodeGen/Hexagon/dsub.ll b/llvm/test/CodeGen/Hexagon/dsub.ll index 4f9d39ed0b2..f271492d057 100644 --- a/llvm/test/CodeGen/Hexagon/dsub.ll +++ b/llvm/test/CodeGen/Hexagon/dsub.ll @@ -1,7 +1,7 @@ ; RUN: llc -march=hexagon -mcpu=hexagonv5 < %s | FileCheck %s ; Check that we generate double precision floating point subtract in V5. -; CHECK: r{{[0-9]+}}:{{[0-9]+}} = dfsub(r{{[0-9]+}}:{{[0-9]+}}, r{{[0-9]+}}:{{[0-9]+}}) +; CHECK: call __hexagon_subdf3 define i32 @main() nounwind { entry: |

