diff options
author | Chris Lattner <sabre@nondot.org> | 2009-10-13 04:27:02 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-10-13 04:27:02 +0000 |
commit | 278c12e1afe4fb4885fb09421690e4364d2d9edc (patch) | |
tree | 12ff8c9074b3f8ef298d00cfd11e396aba88bf7c /llvm/test/Scripts | |
parent | a24b2b8c88145e2fe9c19d7108e25e9829a28a8a (diff) | |
download | bcm5719-llvm-278c12e1afe4fb4885fb09421690e4364d2d9edc.tar.gz bcm5719-llvm-278c12e1afe4fb4885fb09421690e4364d2d9edc.zip |
remove notcast, it is now dead!
llvm-svn: 83938
Diffstat (limited to 'llvm/test/Scripts')
-rwxr-xr-x | llvm/test/Scripts/notcast | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/llvm/test/Scripts/notcast b/llvm/test/Scripts/notcast deleted file mode 100755 index 6d56580c8fc..00000000000 --- a/llvm/test/Scripts/notcast +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh -# -# Program: notcast -# -# Synopsis: Returns 0 if the input does not contain a cast operator -# -# Syntax: notcast tailexpr -# -# postpat - optionally allows a regular expression to go at the end -# prepat - optionally allow a regular expression to go at the start -# - -if grep "$2"'\(\([sz]ext\)\|\(trunc\)\|\(fpto[us]i\)\|\([us]itofp\)\|\(bitcast\)\|\(fpext\)\|\(fptrunc\)\|\(ptrtoint\)\|\(inttoptr\)\|\(cast\)\)'"$1" -then exit 1 -else exit 0 -fi |