Changeset c2416d5 for src/tests/.expect


Ignore:
Timestamp:
Jan 19, 2017, 2:48:33 PM (7 years ago)
Author:
Thierry Delisle <tdelisle@…>
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:
4a3386b4
Parents:
35dd180f
Message:

Fixed 32-bits attribute differences

Location:
src/tests/.expect/32
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/tests/.expect/32/declarationSpecifier.txt

    r35dd180f rc2416d5  
    633633__attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void abort(void);
    634634__attribute__ ((__nonnull__(1),__nothrow__,__leaf__)) extern int atexit(void (*__func)(void));
    635 __attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void exit(int __status);extern int printf(const char *__restrict __format, ...);
     635__attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void exit(int __status);
     636extern int printf(const char *__restrict __format, ...);
    636637static inline int invoke_main(int argc, char **argv, char **envp);
    637638int main(int __argc__i_1, char **__argv__PPc_1, char **__envp__PPc_1){
  • src/tests/.expect/32/extension.txt

    r35dd180f rc2416d5  
    1 extern void *malloc(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(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);
    66extern int printf(const char *__restrict __format, ...);
    77__extension__ int __a__i_1;
  • src/tests/.expect/32/gccExtensions.txt

    r35dd180f rc2416d5  
    171171__attribute__ ((__nonnull__(1),__nothrow__,__leaf__)) extern int atexit(void (*__func)(void));
    172172__attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void exit(int __status);
     173extern int printf(const char *__restrict __format, ...);
    173174static inline int invoke_main(int argc, char **argv, char **envp);
    174175int main(int __argc__i_1, char **__argv__PPc_1, char **__envp__PPc_1){
Note: See TracChangeset for help on using the changeset viewer.