aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/builtins.c
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2010-04-19 18:23:02 +0000
committerEric Christopher <echristo@apple.com>2010-04-19 18:23:02 +0000
commit5e8965525282a48fd34af05183b8c3705a5b00d5 (patch)
treef96886653e23ac021fa55eb7de308f5f428c39f2 /test/Sema/builtins.c
parent63326a53418b4853a83b360ce1dbdb10c5739fc7 (diff)
Remove the argument number from the constant integer diagnostic.
Update all of the testcases accordingly. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@101795 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Sema/builtins.c')
-rw-r--r--test/Sema/builtins.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Sema/builtins.c b/test/Sema/builtins.c
index dbb308e4de..6fa563b311 100644
--- a/test/Sema/builtins.c
+++ b/test/Sema/builtins.c
@@ -60,7 +60,7 @@ void test11(int X) {
break;
}
- __builtin_eh_return_data_regno(X); // expected-error {{argument 0 to '__builtin_eh_return_data_regno' must be a constant integer}}
+ __builtin_eh_return_data_regno(X); // expected-error {{argument to '__builtin_eh_return_data_regno' must be a constant integer}}
}
// PR5062