aboutsummaryrefslogtreecommitdiff
path: root/lib/Parse/ParseExpr.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-11-19 07:37:42 +0000
committerChris Lattner <sabre@nondot.org>2008-11-19 07:37:42 +0000
commitda83bac90aca45d6a228b53a05b30bffeadc1cbd (patch)
treec30ff016542c8ccd6c0578c2f8290eb8f0e9f4b1 /lib/Parse/ParseExpr.cpp
parent6cf3ed7be70a7a9c269a65e3316884f41c7373d4 (diff)
remove uses of IdentifierInfo::getName()
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59603 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Parse/ParseExpr.cpp')
-rw-r--r--lib/Parse/ParseExpr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Parse/ParseExpr.cpp b/lib/Parse/ParseExpr.cpp
index 32a7c0a060..2b803d9ad0 100644
--- a/lib/Parse/ParseExpr.cpp
+++ b/lib/Parse/ParseExpr.cpp
@@ -808,7 +808,7 @@ Parser::ExprResult Parser::ParseBuiltinPrimaryExpression() {
// All of these start with an open paren.
if (Tok.isNot(tok::l_paren)) {
- Diag(Tok, diag::err_expected_lparen_after) << BuiltinII->getName();
+ Diag(Tok, diag::err_expected_lparen_after) << BuiltinII;
return ExprResult(true);
}