Skip to content

Commit 33b2e98

Browse files
committed
formatting
1 parent 29718e4 commit 33b2e98

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/codegen/CreateStaticTerm.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ llvm::Constant *create_static_term::not_injection_case(
3636

3737
std::stringstream kore_string;
3838
constructor->print(kore_string);
39-
llvm::Constant *block
40-
= module_->getOrInsertGlobal("const_" + escape(kore_string.str()), block_type);
39+
llvm::Constant *block = module_->getOrInsertGlobal(
40+
"const_" + escape(kore_string.str()), block_type);
4141
auto *global_var = llvm::dyn_cast<llvm::GlobalVariable>(block);
4242
// this is technically not a constant because functions which return fresh constants
4343
// will mutate a block in this circumstance. Probably best not to rely on this actually

0 commit comments

Comments
 (0)