Changeset 3b5c119 in mainline for uspace/app


Ignore:
Timestamp:
2012-04-08T08:07:21Z (14 years ago)
Author:
Frantisek Princ <frantisek.princ@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1196df6
Parents:
ce6de59 (diff), f3378ba (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge with mainline

Location:
uspace/app
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/binutils/Makefile

    rce6de59 r3b5c119  
    112112endif
    113113ifeq ($(PLATFORM),arm32)
    114 TARGET = arm-linux-gnu
     114TARGET = arm-linux-gnueabi
    115115endif
    116116ifeq ($(PLATFORM),ia32)
  • uspace/app/sbi/src/run_texpr.c

    rce6de59 r3b5c119  
    9898{
    9999        stree_symbol_t *sym;
    100         tdata_item_t *targ_i;
    101         tdata_item_t *titem;
     100        tdata_item_t *targ_i = NULL;
     101        tdata_item_t *titem = NULL;;
    102102        tdata_object_t *tobject;
    103103        tdata_deleg_t *tdeleg;
     
    139139                return;
    140140        }
    141 
    142         /* Make compiler happy. */
    143         titem = NULL;
    144141
    145142        switch (sym->sc) {
     
    222219    stree_tindex_t *tindex, tdata_item_t **res)
    223220{
    224         tdata_item_t *base_ti;
     221        tdata_item_t *base_ti = NULL;
    225222        tdata_item_t *titem;
    226223        tdata_array_t *tarray;
  • uspace/app/tester/fault/fault2.c

    rce6de59 r3b5c119  
    3535const char *test_fault2(void)
    3636{
    37         volatile long long var;
    38         volatile int var1;
    39        
    40         var1 = *((aliasing_int *) (((char *) (&var)) + 1));
     37        volatile long long var = 0;
     38        volatile int var1 = *((aliasing_int *) (((char *) (&var)) + 1));
    4139        printf("Read %d\n", var1);
    4240       
Note: See TracChangeset for help on using the changeset viewer.