1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

Fix test typo. NFC

llvm-svn: 303489
This commit is contained in:
Xin Tong 2017-05-20 19:40:24 +00:00
parent 9f80cb84a8
commit 8828b63b7a

View File

@ -226,7 +226,7 @@ namespace llvm {
char DPass::ID = 0;
std::unique_ptr<Module> makeLLVMModule(LLVMContext &Context, DPass *P) {
const char *ModuleStrig =
const char *ModuleString =
"declare i32 @g()\n" \
"define void @f(i32 %x) personality i32 ()* @g {\n" \
"bb0:\n" \
@ -250,7 +250,7 @@ namespace llvm {
" ret void\n" \
"}\n";
SMDiagnostic Err;
return parseAssemblyString(ModuleStrig, Err, Context);
return parseAssemblyString(ModuleString, Err, Context);
}
TEST(DominatorTree, Unreachable) {