diff options
author | Chris Lattner <sabre@nondot.org> | 2003-01-13 01:03:16 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-01-13 01:03:16 +0000 |
commit | 4a8068f19a521f5b9d940e015985dadf9f7676cf (patch) | |
tree | aac86fc774f6391c07e29f50c39fd1c61e48a0c7 /test/ExecutionEngine/2003-01-10-FUCOM.ll | |
parent | a960d95253be892d5f2e3017ba5df989c247a0c1 (diff) | |
download | external_llvm-4a8068f19a521f5b9d940e015985dadf9f7676cf.zip external_llvm-4a8068f19a521f5b9d940e015985dadf9f7676cf.tar.gz external_llvm-4a8068f19a521f5b9d940e015985dadf9f7676cf.tar.bz2 |
New testcases
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5261 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/ExecutionEngine/2003-01-10-FUCOM.ll')
-rw-r--r-- | test/ExecutionEngine/2003-01-10-FUCOM.ll | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/ExecutionEngine/2003-01-10-FUCOM.ll b/test/ExecutionEngine/2003-01-10-FUCOM.ll new file mode 100644 index 0000000..37448f0 --- /dev/null +++ b/test/ExecutionEngine/2003-01-10-FUCOM.ll @@ -0,0 +1,8 @@ + +int %main() { + %X = add double 0.0, 1.0 + %Y = sub double 0.0, 1.0 + %Z = seteq double %X, %Y + add double %Y, 0.0 + ret int 0 +} |