diff options
author | Jan Vesely <jan.vesely@rutgers.edu> | 2014-10-14 18:52:04 +0000 |
---|---|---|
committer | Jan Vesely <jan.vesely@rutgers.edu> | 2014-10-14 18:52:04 +0000 |
commit | df19696374ca30f66354c460c155ad066d64c722 (patch) | |
tree | f0dc993cd4e719a1e146c0e3c07ddc89843f36c8 /llvm/lib | |
parent | d4ea29e6b6a91e9169a44a5cd79cf4ed3fa91b66 (diff) | |
download | bcm5719-llvm-df19696374ca30f66354c460c155ad066d64c722.tar.gz bcm5719-llvm-df19696374ca30f66354c460c155ad066d64c722.zip |
R600: FMA is VecALU only instruction
Reviewed-by: Tom Stellard <tom@stellard.net>
Signed-off-by: Jan Vesely <jan.vesely@rutgers.edu>
llvm-svn: 219704
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/R600/R600Instructions.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/R600/R600Instructions.td b/llvm/lib/Target/R600/R600Instructions.td index a883c839e62..114c6e4db35 100644 --- a/llvm/lib/Target/R600/R600Instructions.td +++ b/llvm/lib/Target/R600/R600Instructions.td @@ -917,7 +917,7 @@ class MULADD_IEEE_Common <bits<5> inst> : R600_3OP < class FMA_Common <bits<5> inst> : R600_3OP < inst, "FMA", - [(set f32:$dst, (fma f32:$src0, f32:$src1, f32:$src2))] + [(set f32:$dst, (fma f32:$src0, f32:$src1, f32:$src2))], VecALU >; class CNDE_Common <bits<5> inst> : R600_3OP < |