aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/SimplifyLibCalls/IsDigit.ll
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-04-15 05:16:38 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-04-15 05:16:38 +0000
commit894cfffea16384d0121d9a50a5e7ba2be3dd2fa7 (patch)
treebc21b38ebc67c4d38eef3f8cf8def8774981c813 /test/Transforms/SimplifyLibCalls/IsDigit.ll
parent950c694e94f8ab7fcb3136e2fd0d578b37cbc50e (diff)
downloadexternal_llvm-894cfffea16384d0121d9a50a5e7ba2be3dd2fa7.zip
external_llvm-894cfffea16384d0121d9a50a5e7ba2be3dd2fa7.tar.gz
external_llvm-894cfffea16384d0121d9a50a5e7ba2be3dd2fa7.tar.bz2
For PR1319:
Convert to new test system. This exposes IsDigit.ll as failing. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36046 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/SimplifyLibCalls/IsDigit.ll')
-rw-r--r--test/Transforms/SimplifyLibCalls/IsDigit.ll3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Transforms/SimplifyLibCalls/IsDigit.ll b/test/Transforms/SimplifyLibCalls/IsDigit.ll
index 1386c14..bcdb60c 100644
--- a/test/Transforms/SimplifyLibCalls/IsDigit.ll
+++ b/test/Transforms/SimplifyLibCalls/IsDigit.ll
@@ -1,5 +1,6 @@
; Test that the IsDigitOptimizer works correctly
-; RUN: llvm-upgrade < %s | llvm-as | opt -simplify-libcalls | llvm-dis | not grep 'call'
+; RUN: llvm-upgrade < %s | llvm-as | opt -simplify-libcalls | llvm-dis | \
+; RUN: not grep call
declare int %isdigit(int)
declare int %isascii(int)