From 18f805a7ea5f369ef523821693f1176b40bcfc7e Mon Sep 17 00:00:00 2001 From: Guillaume Chatelet Date: Fri, 27 Sep 2019 12:54:21 +0000 Subject: [Alignment][NFC] Remove unneeded llvm:: scoping on Align types llvm-svn: 373081 --- llvm/lib/CodeGen/MIRParser/MIParser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/CodeGen/MIRParser/MIParser.cpp') diff --git a/llvm/lib/CodeGen/MIRParser/MIParser.cpp b/llvm/lib/CodeGen/MIRParser/MIParser.cpp index dd9f3436679..0a628d53923 100644 --- a/llvm/lib/CodeGen/MIRParser/MIParser.cpp +++ b/llvm/lib/CodeGen/MIRParser/MIParser.cpp @@ -641,7 +641,7 @@ bool MIParser::parseBasicBlockDefinition( return error(Loc, Twine("redefinition of machine basic block with id #") + Twine(ID)); if (Alignment) - MBB->setAlignment(llvm::Align(Alignment)); + MBB->setAlignment(Align(Alignment)); if (HasAddressTaken) MBB->setHasAddressTaken(); MBB->setIsEHPad(IsLandingPad); -- cgit v1.2.3