Skip to content

Commit 0c1acd8

Browse files
committed
format
1 parent a28f85b commit 0c1acd8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1311,7 +1311,8 @@ bool WebAssemblyLowerEmscriptenEHSjLj::runSjLjOnFunction(Function &F) {
13111311
// This alloca'ed pointer is used by the runtime to identify function
13121312
// inovactions. It's just for pointer comparisons. It will never
13131313
// be dereferenced.
1314-
FunctionInvocationId = IRB.CreateAlloca(IRB.getInt32Ty(), nullptr, "functionInvocationId");
1314+
FunctionInvocationId =
1315+
IRB.CreateAlloca(IRB.getInt32Ty(), nullptr, "functionInvocationId");
13151316
FunctionInvocationId->setDebugLoc(FirstDL);
13161317
} else {
13171318
// This instruction effectively means %setjmpTableSize = 4.

0 commit comments

Comments
 (0)