OSDN Git Service

2003-10-26 Dave Brolley <brolley@redhat.com>
authorbrolley <brolley>
Sun, 26 Oct 2003 19:40:30 +0000 (19:40 +0000)
committerbrolley <brolley>
Sun, 26 Oct 2003 19:40:30 +0000 (19:40 +0000)
        * sid-decode.scm (-gen-record-profile-args): Test trace_counter_p
        and final_insn_count_p. Don't test WITH_PROFILE_MODEL_P.
        (-gen-extract-fn): Call -gen-record-profile-args.

cgen/ChangeLog
cgen/sid-decode.scm

index e5e3537..32ea152 100644 (file)
@@ -1,7 +1,7 @@
 2003-10-26  Dave Brolley  <brolley@redhat.com>
 
        * sid-decode.scm (-gen-record-profile-args): Test trace_counter_p
-       and final_insn_count_p.
+       and final_insn_count_p. Don't test WITH_PROFILE_MODEL_P.
        (-gen-extract-fn): Call -gen-record-profile-args.
 
 2003-10-21  Dave Brolley  <brolley@redhat.com>
index 37058f5..722206f 100644 (file)
@@ -552,7 +552,6 @@ struct @prefix@_scache {
     (if (and (null? in-ops) (null? out-ops))
        ""
        (string-list
-        "#if WITH_PROFILE_MODEL_P\n"
         "  /* Record the fields for profiling.  */\n"
         "  if (UNLIKELY (current_cpu->trace_counter_p || current_cpu->final_insn_count_p))\n"
         "    {\n"
@@ -561,7 +560,6 @@ struct @prefix@_scache {
         (string-list-map (lambda (op) (op:record-profile op sfmt #t))
                          out-ops)
         "    }\n"
-        "#endif\n"
         )))
 )