Ticket #10542: find-cmov

File find-cmov, 173 bytes (added by andrew@…, 12 years ago)

script to find files containing cmov instructions below the current directory

Line 
1#!/bin/sh
2find . -perm +111 -type f | while read bin;
3do
4objdump --disassemble $bin 2>/dev/null | grep cmov | grep -q -v fcmov && echo "$bin has cmov instruction."
5done
6