- Timestamp:
- Jan 18, 2017, 9:22:35 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 68e6031
- Parents:
- f8b6d921
- Location:
- src/tests/.expect/64
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/tests/.expect/64/declarationSpecifier.txt ¶
rf8b6d921 r1ab7d3fe 1 extern void *malloc(long unsigned int __size);2 extern void free(void *__ptr);3 extern void abort(void);4 extern int atexit(void (*__func)(void));5 extern void exit(int __status);1 __attribute__ ((__malloc__,__nothrow__,__leaf__)) extern void *malloc(long unsigned int __size); 2 __attribute__ ((__nothrow__,__leaf__)) extern void free(void *__ptr); 3 __attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void abort(void); 4 __attribute__ ((__nonnull__(1),__nothrow__,__leaf__)) extern int atexit(void (*__func)(void)); 5 __attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void exit(int __status); 6 6 extern int printf(const char *__restrict __format, ...); 7 7 volatile const short __x1__CVs_1; … … 629 629 } 630 630 static inline int invoke_main(int argc, char* argv[], char* envp[]) { (void)argc; (void)argv; (void)envp; return __main__Fi_iPPCc__1(argc, argv); } 631 extern void *malloc(long unsigned int __size);632 extern void free(void *__ptr);633 extern void abort(void);634 extern int atexit(void (*__func)(void));635 extern void exit(int __status);631 __attribute__ ((__malloc__,__nothrow__,__leaf__)) extern void *malloc(long unsigned int __size); 632 __attribute__ ((__nothrow__,__leaf__)) extern void free(void *__ptr); 633 __attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void abort(void); 634 __attribute__ ((__nonnull__(1),__nothrow__,__leaf__)) extern int atexit(void (*__func)(void)); 635 __attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void exit(int __status); 636 636 extern int printf(const char *__restrict __format, ...); 637 637 static inline int invoke_main(int argc, char **argv, char **envp); -
TabularUnified src/tests/.expect/64/extension.txt ¶
rf8b6d921 r1ab7d3fe 1 extern void *malloc(long unsigned int __size);2 extern void free(void *__ptr);3 extern void abort(void);4 extern int atexit(void (*__func)(void));5 extern void exit(int __status);1 __attribute__ ((__malloc__,__nothrow__,__leaf__)) extern void *malloc(long unsigned int __size); 2 __attribute__ ((__nothrow__,__leaf__)) extern void free(void *__ptr); 3 __attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void abort(void); 4 __attribute__ ((__nonnull__(1),__nothrow__,__leaf__)) extern int atexit(void (*__func)(void)); 5 __attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void exit(int __status); 6 6 extern int printf(const char *__restrict __format, ...); 7 7 __extension__ int __a__i_1; -
TabularUnified src/tests/.expect/64/gccExtensions.txt ¶
rf8b6d921 r1ab7d3fe 1 extern void *malloc(long unsigned int __size);2 extern void free(void *__ptr);3 extern void abort(void);4 extern int atexit(void (*__func)(void));5 extern void exit(int __status);1 __attribute__ ((__malloc__,__nothrow__,__leaf__)) extern void *malloc(long unsigned int __size); 2 __attribute__ ((__nothrow__,__leaf__)) extern void free(void *__ptr); 3 __attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void abort(void); 4 __attribute__ ((__nonnull__(1),__nothrow__,__leaf__)) extern int atexit(void (*__func)(void)); 5 __attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void exit(int __status); 6 6 extern int printf(const char *__restrict __format, ...); 7 7 extern int __x__i_1 asm ( "xx" ); … … 166 166 } 167 167 static inline int invoke_main(int argc, char* argv[], char* envp[]) { (void)argc; (void)argv; (void)envp; return __main__Fi_iPPCc__1(argc, argv); } 168 extern void *malloc(long unsigned int __size);169 extern void free(void *__ptr);170 extern void abort(void);171 extern int atexit(void (*__func)(void));172 extern void exit(int __status);168 __attribute__ ((__malloc__,__nothrow__,__leaf__)) extern void *malloc(long unsigned int __size); 169 __attribute__ ((__nothrow__,__leaf__)) extern void free(void *__ptr); 170 __attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void abort(void); 171 __attribute__ ((__nonnull__(1),__nothrow__,__leaf__)) extern int atexit(void (*__func)(void)); 172 __attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void exit(int __status); 173 173 extern int printf(const char *__restrict __format, ...); 174 174 static inline int invoke_main(int argc, char **argv, char **envp);
Note: See TracChangeset
for help on using the changeset viewer.