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 | a9445e11c553855a6caacbbbf77a9b993ecc651e (patch) | |
tree | 6bc8ec7754c19ad16540ade4132afb5e6fb1b185 /test/ExecutionEngine/2010-01-15-UndefValue.ll | |
parent | fbbee8d7f967b72c5ec3105ef1b21e8a115a8b78 (diff) | |
download | llvm-a9445e11c553855a6caacbbbf77a9b993ecc651e.tar.gz |
Floating-point add, sub, and mul are now spelled fadd, fsub, and fmul,
respectively.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97531 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/ExecutionEngine/2010-01-15-UndefValue.ll')
-rw-r--r-- | test/ExecutionEngine/2010-01-15-UndefValue.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ExecutionEngine/2010-01-15-UndefValue.ll b/test/ExecutionEngine/2010-01-15-UndefValue.ll index 7d646ebdeb9d..33ca63a02050 100644 --- a/test/ExecutionEngine/2010-01-15-UndefValue.ll +++ b/test/ExecutionEngine/2010-01-15-UndefValue.ll @@ -3,7 +3,7 @@ define i32 @main() { %a = add i32 0, undef - %b = add float 0.0, undef - %c = add double 0.0, undef + %b = fadd float 0.0, undef + %c = fadd double 0.0, undef ret i32 0 } |