diff options
| author | Dan Gohman <gohman@apple.com> | 2010-03-02 01:11:08 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2010-03-02 01:11:08 +0000 |
| commit | 6f34abd0926c1d15e723512e7f69ca664c380ee1 (patch) | |
| tree | d64903405f45255604987467abdfd74aa93417e2 /llvm/docs/CodeGenerator.html | |
| parent | 6232f73c7b615c87661bd2aad8d6cb2f880a05a3 (diff) | |
| download | bcm5719-llvm-6f34abd0926c1d15e723512e7f69ca664c380ee1.tar.gz bcm5719-llvm-6f34abd0926c1d15e723512e7f69ca664c380ee1.zip | |
Floating-point add, sub, and mul are now spelled fadd, fsub, and fmul,
respectively.
llvm-svn: 97531
Diffstat (limited to 'llvm/docs/CodeGenerator.html')
| -rw-r--r-- | llvm/docs/CodeGenerator.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/docs/CodeGenerator.html b/llvm/docs/CodeGenerator.html index 4c87efaad06..2be31851e36 100644 --- a/llvm/docs/CodeGenerator.html +++ b/llvm/docs/CodeGenerator.html @@ -1041,9 +1041,9 @@ ret <div class="doc_code"> <pre> -%t1 = add float %W, %X -%t2 = mul float %t1, %Y -%t3 = add float %t2, %Z +%t1 = fadd float %W, %X +%t2 = fmul float %t1, %Y +%t3 = fadd float %t2, %Z </pre> </div> |

