blob: c6ddb4390fd54842ebbdc258d552d1da7ddf816e [file] [log] [blame]
Reid Spencer2461b732006-11-04 00:49:52 +00001#!/bin/sh
2#
3# Program: notcast
4#
5# Synopsis: Returns 0 if the input does not contain a cast operator
6#
7# Syntax: notcast
8
9if grep '\([sz]ext\)\|\(trunc\)\|\(fp2[us]int\)\|\([us]int2fp\)\|\(bitconvert\)\|\(fpext\)\|\(fptrunc\)'
10then exit 1
11else exit 0
12fi