Skip to content

Commit cbd4793

Browse files
committed
format
1 parent d2b828d commit cbd4793

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/lib/Target/NVPTX/NVVMReflect.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,8 @@ bool NVVMReflect::handleReflectFunction(Module &M,
165165
if (!GlobalStr)
166166
report_fatal_error("__nvvm_reflect argument must be a constant string");
167167

168-
const auto *const ConstantStr = dyn_cast<ConstantDataSequential>(GlobalStr->getOperand(0));
168+
const auto *const ConstantStr =
169+
dyn_cast<ConstantDataSequential>(GlobalStr->getOperand(0));
169170
if (!ConstantStr)
170171
report_fatal_error("__nvvm_reflect argument must be a string constant");
171172
if (!ConstantStr->isCString())

0 commit comments

Comments
 (0)