diff options
-rwxr-xr-x | scripts/recordmcount.pl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/recordmcount.pl b/scripts/recordmcount.pl index 070042b4ccd5..2ded5c8e6b85 100755 --- a/scripts/recordmcount.pl +++ b/scripts/recordmcount.pl | |||
@@ -206,6 +206,13 @@ if ($arch eq "x86_64") { | |||
206 | $alignment = 2; | 206 | $alignment = 2; |
207 | $section_type = '%progbits'; | 207 | $section_type = '%progbits'; |
208 | 208 | ||
209 | } elsif ($arch eq "ia64") { | ||
210 | $mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\s_mcount\$"; | ||
211 | $type = "data8"; | ||
212 | |||
213 | if ($is_module eq "0") { | ||
214 | $cc .= " -mconstant-gp"; | ||
215 | } | ||
209 | } else { | 216 | } else { |
210 | die "Arch $arch is not supported with CONFIG_FTRACE_MCOUNT_RECORD"; | 217 | die "Arch $arch is not supported with CONFIG_FTRACE_MCOUNT_RECORD"; |
211 | } | 218 | } |