[llvm-commits] [hlvm] r38372 - /hlvm/trunk/tools/hlvm-gentestcase/Generate.cpp
Reid Spencer
reid at x10sys.com
Sat Jul 7 17:02:46 PDT 2007
Author: reid
Date: Sat Jul 7 19:02:46 2007
New Revision: 38372
URL: http://llvm.org/viewvc/llvm-project?rev=38372&view=rev
Log:
Don't allow f80 type as its not implemented yet.
Modified:
hlvm/trunk/tools/hlvm-gentestcase/Generate.cpp
Modified: hlvm/trunk/tools/hlvm-gentestcase/Generate.cpp
URL: http://llvm.org/viewvc/llvm-project/hlvm/trunk/tools/hlvm-gentestcase/Generate.cpp?rev=38372&r1=38371&r2=38372&view=diff
==============================================================================
--- hlvm/trunk/tools/hlvm-gentestcase/Generate.cpp (original)
+++ hlvm/trunk/tools/hlvm-gentestcase/Generate.cpp Sat Jul 7 19:02:46 2007
@@ -126,7 +126,7 @@
theType = u64Ty;
else if (theType == s128Ty)
theType = s64Ty;
- else if (theType == f128Ty || theType == f96Ty)
+ else if (theType == f128Ty || theType == f96Ty || theType == f80Ty)
theType = f64Ty;
else if (theType == bufferTy || theType == streamTy || theType == textTy)
theType = s32Ty;
More information about the llvm-commits
mailing list