X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=runtime%2Flibprofile%2FEdgeProfiling.c;h=4a68a086fbce4858261d402ed593ae8e147e5481;hb=0011dc4738fbe624d44197ef9496517fd093eaa4;hp=942b63221a303830da691824203a50ecccdb6961;hpb=127cab2cc7e9b6f474d4768b173af630d8b81840;p=oota-llvm.git diff --git a/runtime/libprofile/EdgeProfiling.c b/runtime/libprofile/EdgeProfiling.c index 942b63221a3..4a68a086fbc 100644 --- a/runtime/libprofile/EdgeProfiling.c +++ b/runtime/libprofile/EdgeProfiling.c @@ -2,8 +2,8 @@ |* |* The LLVM Compiler Infrastructure |* -|* This file was developed by the LLVM research group and is distributed under -|* the University of Illinois Open Source License. See LICENSE.TXT for details. +|* This file is distributed under the University of Illinois Open Source +|* License. See LICENSE.TXT for details. |* |*===----------------------------------------------------------------------===*| |* @@ -23,12 +23,12 @@ static unsigned NumElements; * data. */ static void EdgeProfAtExitHandler() { - /* Note that if this were doing something more intellegent with the - instrumentation, that we could do some computation here to expand what we - collected into simple edge profiles. Since we directly count each edge, we - just write out all of the counters directly. - */ - write_profiling_data(Edge, ArrayStart, NumElements); + /* Note that if this were doing something more intelligent with the + * instrumentation, we could do some computation here to expand what we + * collected into simple edge profiles. Since we directly count each edge, we + * just write out all of the counters directly. + */ + write_profiling_data(EdgeInfo, ArrayStart, NumElements); }