[llvm-commits] [hlvm] r38418 - /hlvm/trunk/hlvm/CodeGen/LLVMEmitter.cpp
Reid Spencer
reid at x10sys.com
Sat Jul 7 17:03:12 PDT 2007
Author: reid
Date: Sat Jul 7 19:03:12 2007
New Revision: 38418
URL: http://llvm.org/viewvc/llvm-project?rev=38418&view=rev
Log:
Minor syntax tweak.
Modified:
hlvm/trunk/hlvm/CodeGen/LLVMEmitter.cpp
Modified: hlvm/trunk/hlvm/CodeGen/LLVMEmitter.cpp
URL: http://llvm.org/viewvc/llvm-project/hlvm/trunk/hlvm/CodeGen/LLVMEmitter.cpp?rev=38418&r1=38417&r2=38418&view=diff
==============================================================================
--- hlvm/trunk/hlvm/CodeGen/LLVMEmitter.cpp (original)
+++ hlvm/trunk/hlvm/CodeGen/LLVMEmitter.cpp Sat Jul 7 19:03:12 2007
@@ -272,7 +272,7 @@
if (! hlvm_stream) {
OpaqueType* opq = OpaqueType::get();
TheModule->addTypeName("hlvm_stream_obj", opq);
- hlvm_stream= PointerType::get(opq);
+ hlvm_stream = PointerType::get(opq);
TheModule->addTypeName("hlvm_stream", hlvm_stream);
}
return hlvm_stream;
More information about the llvm-commits
mailing list