]> xenbits.xensource.com Git - xtf.git/commitdiff
Don't doubly declare the name label in ENTRY()
authorAndrew Cooper <andrew.cooper3@citrix.com>
Mon, 15 Feb 2016 15:33:23 +0000 (15:33 +0000)
committerAndrew Cooper <andrew.cooper3@citrix.com>
Mon, 15 Feb 2016 15:33:23 +0000 (15:33 +0000)
GLOBAL() already declares it.

Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
include/xtf/asm_macros.h

index ace31687c810340a1c0cd8b47d117a21f4b4754d..71ec874c2651fbe20b8d6058cb33b096c0354ccd 100644 (file)
@@ -26,8 +26,7 @@ name:
  */
 #define ENTRY(name)                             \
     .align 16;                                  \
-    GLOBAL(name)                                \
-name:
+    GLOBAL(name)
 
 /**
  * Set the size of a named symbol.