diff options
author | Bill Wendling <isanbard@gmail.com> | 2008-11-18 01:49:24 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2008-11-18 01:49:24 +0000 |
commit | e0d5e67c981a3b67522870df00b03599a7478108 (patch) | |
tree | 0ce29832555066172ae5ee570a5dfb1ea96f46a7 /llvm/test/CodeGen/XCore/log10.ll | |
parent | 3d9740da29741c98270f9482afc5b50077e38f34 (diff) | |
download | bcm5719-llvm-e0d5e67c981a3b67522870df00b03599a7478108.tar.gz bcm5719-llvm-e0d5e67c981a3b67522870df00b03599a7478108.zip |
Revert r59464. It was causing this failure:
Running /Volumes/Sandbox/Buildbot/llvm/full-llvm/build/llvm.src/test/CodeGen/XCore/dg.exp ...
FAIL: /Volumes/Sandbox/Buildbot/llvm/full-llvm/build/llvm.src/test/CodeGen/XCore/fneg.ll
Failed with signal(SIGABRT) at line 1
while running: llvm-as < /Volumes/Sandbox/Buildbot/llvm/full-llvm/build/llvm.src/test/CodeGen/XCore/fneg.ll | llc -march=xcore > fneg.ll.tmp1.s
Assertion failed: (VT.isFloatingPoint() && "Cannot create integer FP constant!"), function getConstantFP, file /Volumes/Sandbox/Buildbot/llvm/full-llvm/build/llvm.src/lib/CodeGen/SelectionDAG/SelectionDAG.cpp, line 913.
0 llc 0x0092115c _ZN4llvm3sys18RemoveFileOnSignalERKNS0_4PathEPSs + 844
1 libSystem.B.dylib 0x9217809b _sigtramp + 43
2 ??? 0xffffffff 0x0 + 4294967295
3 libSystem.B.dylib 0x921f0ec2 raise + 26
4 libSystem.B.dylib 0x9220047f abort + 73
5 libSystem.B.dylib 0x921f2063 __assert_rtn + 101
6 llc 0x005a5b0a _ZN4llvm12SelectionDAG13getConmake[1]: *** [check-local] Error 1
make: *** [check] Error 2
llvm-svn: 59487
Diffstat (limited to 'llvm/test/CodeGen/XCore/log10.ll')
-rw-r--r-- | llvm/test/CodeGen/XCore/log10.ll | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/XCore/log10.ll b/llvm/test/CodeGen/XCore/log10.ll index f844d8fc6a2..324e2ccd56b 100644 --- a/llvm/test/CodeGen/XCore/log10.ll +++ b/llvm/test/CodeGen/XCore/log10.ll @@ -1,6 +1,7 @@ ; RUN: llvm-as < %s | llc -march=xcore > %t1.s ; RUN: grep "bl log10f" %t1.s | count 1 ; RUN: grep "bl log10" %t1.s | count 2 +; XFAIL: * declare double @llvm.log10.f64(double) define double @test(double %F) { |