aboutsummaryrefslogtreecommitdiff
path: root/test/Frontend/optimization-remark-with-hotness.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Frontend/optimization-remark-with-hotness.c')
-rw-r--r--test/Frontend/optimization-remark-with-hotness.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Frontend/optimization-remark-with-hotness.c b/test/Frontend/optimization-remark-with-hotness.c
index 150b7324da..5f4c83b46c 100644
--- a/test/Frontend/optimization-remark-with-hotness.c
+++ b/test/Frontend/optimization-remark-with-hotness.c
@@ -66,7 +66,7 @@ void bar(int x) {
int main(int argc, const char *argv[]) {
for (int i = 0; i < 30; i++)
- // expected-remark@+1 {{bar not inlined into main because it should never be inlined (cost=never): always inliner (hotness:}}
+ // expected-remark@+1 {{bar not inlined into main because it should never be inlined (cost=never): no alwaysinline attribute (hotness:}}
bar(argc);
return sum;
}