Remove the useless _C_LABEL from generated system calls.

Change-Id: Id1d2fd39972652831ea825f6f9cf940b08f42b5c
This commit is contained in:
Elliott Hughes
2014-02-19 18:59:19 -08:00
parent fbaddda9f0
commit d465eb4e76
83 changed files with 83 additions and 83 deletions

View File

@@ -288,7 +288,7 @@ def add_footer(pointer_length, stub, syscall):
# Use hidden visibility for any functions beginning with underscores.
if pointer_length == 64 and syscall["func"].startswith("__"):
stub += '.hidden _C_LABEL(' + syscall["func"] + ')\n'
stub += '.hidden ' + syscall["func"] + '\n'
return stub