Don't emit a redirector for OPENSSL_ia32cap_get.

Another synthesized function which may be referenced directly.

Change-Id: Ic75fe66ce7244246a2d4a707b6a5fee24cac6941
Reviewed-on: https://boringssl-review.googlesource.com/15831
Commit-Queue: David Benjamin <davidben@google.com>
Commit-Queue: Adam Langley <agl@google.com>
Reviewed-by: Adam Langley <agl@google.com>
CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
diff --git a/crypto/fipsmodule/delocate.go b/crypto/fipsmodule/delocate.go
index 0ec5b0d..7483fc7 100644
--- a/crypto/fipsmodule/delocate.go
+++ b/crypto/fipsmodule/delocate.go
@@ -269,7 +269,7 @@
 				continue
 			}
 
-			if strings.HasSuffix(target, "_bss_get") {
+			if strings.HasSuffix(target, "_bss_get") || target == "OPENSSL_ia32cap_get" {
 				// reference to a synthesised function. Don't
 				// indirect it.
 				ret = append(ret, line)