From 248abbd71f355c155be59c9aa1ca50f69475aa72 Mon Sep 17 00:00:00 2001 From: Adam Langley Date: Tue, 23 Jun 2015 14:59:57 -0700 Subject: [PATCH] Add missing comma in .type pragma for rdrand code. This tripped up some version of GCC or Clang. Change-Id: I925423558f188ce39b65b2e2ecd01bf009fab071 --- crypto/rand/asm/rdrand-x86_64.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/rand/asm/rdrand-x86_64.pl b/crypto/rand/asm/rdrand-x86_64.pl index 6b74dbf2..c32a55c4 100644 --- a/crypto/rand/asm/rdrand-x86_64.pl +++ b/crypto/rand/asm/rdrand-x86_64.pl @@ -49,7 +49,7 @@ CRYPTO_rdrand: # one on success and zero on hardware failure. # int CRYPTO_rdrand_multiple8_buf(uint8_t *buf, size_t len); .globl CRYPTO_rdrand_multiple8_buf -.type CRYPTO_rdrand_multiple8_buf\@function,1 +.type CRYPTO_rdrand_multiple8_buf,\@function,2 .align 16 CRYPTO_rdrand_multiple8_buf: test %rsi, %rsi