[llvm-commits] [gcc-plugin] r75340 - /gcc-plugin/trunk/llvm-convert.cpp
Duncan Sands
baldrick at free.fr
Fri Jul 10 20:52:50 PDT 2009
Author: baldrick
Date: Fri Jul 10 22:52:50 2009
New Revision: 75340
URL: http://llvm.org/viewvc/llvm-project?rev=75340&view=rev
Log:
The notion of a gimple temporary doesn't seem to
exist anymore. Also, maybe we should ask GCC to
put the gimple in SSA form, and output SSA style
IR directly.
Modified:
gcc-plugin/trunk/llvm-convert.cpp
Modified: gcc-plugin/trunk/llvm-convert.cpp
URL: http://llvm.org/viewvc/llvm-project/gcc-plugin/trunk/llvm-convert.cpp?rev=75340&r1=75339&r2=75340&view=diff
==============================================================================
--- gcc-plugin/trunk/llvm-convert.cpp (original)
+++ gcc-plugin/trunk/llvm-convert.cpp Fri Jul 10 22:52:50 2009
@@ -91,8 +91,9 @@
/// can only do this if the value is a first class llvm value and if it's a
/// "gimple_formal_tmp_reg".
static bool isGimpleTemporary(tree decl) {
- return is_gimple_formal_tmp_reg(decl) &&
- !isAggregateTreeType(TREE_TYPE(decl));
+ return false;
+//FIXME return is_gimple_formal_tmp_reg(decl) &&
+//FIXME !isAggregateTreeType(TREE_TYPE(decl));
}
/// getINTEGER_CSTVal - Return the specified INTEGER_CST value as a uint64_t.
More information about the llvm-commits
mailing list