diff options
author | John van Groningen | 2011-01-28 13:12:44 +0000 |
---|---|---|
committer | John van Groningen | 2011-01-28 13:12:44 +0000 |
commit | aa4d7911bce0385f958bb32c149b22e700f996d9 (patch) | |
tree | a1a6048e0b33161e2e148735d0c257e44c94f976 /cginstructions.c | |
parent | optimize for cpu with a 128 bit sse unit (instead of 64): (diff) |
remove SMALL_LAZY_DESCRIPTORS
Diffstat (limited to 'cginstructions.c')
-rw-r--r-- | cginstructions.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/cginstructions.c b/cginstructions.c index 13d6402..e70a947 100644 --- a/cginstructions.c +++ b/cginstructions.c @@ -12,13 +12,6 @@ #include <stdlib.h> #include "cgport.h" - -#ifdef THINK_C -# define SMALL_LAZY_DESCRIPTORS 1 -#else -# define SMALL_LAZY_DESCRIPTORS 0 -#endif - #include "cg.h" #include "cgconst.h" #include "cgrconst.h" @@ -6031,19 +6024,8 @@ void code_send_graph (char descriptor_name[],int a_offset_1,int a_offset_2) if (send_graph_label==NULL) send_graph_label=enter_label ("send_graph",IMPORT_LABEL); - -#ifdef SMALL_LAZY_DESCRIPTORS - { - char h_descriptor_name[257]; - - strcpy (h_descriptor_name,descriptor_name); - strcat (h_descriptor_name,"#"); - descriptor_label=enter_label (h_descriptor_name,DATA_LABEL); - } -#else descriptor_label=enter_label (descriptor_name,0); -#endif graph_1=g_lea (descriptor_label); graph_2=s_get_a (a_offset_1); |