From bugzilla-daemon at cs.uiuc.edu Mon Feb 1 01:56:31 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 1 Feb 2010 01:56:31 -0600 Subject: [LLVMbugs] [Bug 6193] New: crash in instcombine in MatchSelectFromAndOr Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6193 Summary: crash in instcombine in MatchSelectFromAndOr Product: new-bugs Version: unspecified Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: sharparrow1 at yahoo.com CC: llvmbugs at cs.uiuc.edu Blocks: 5511 Testcase: define i32 @x(i32 %aMaskWidth, i8 %aStride) nounwind { entry: %conv41 = sext i8 %aStride to i32 %neg = xor i32 %conv41, -1 %and42 = and i32 %aMaskWidth, %neg %and47 = and i32 130, %conv41 %or = or i32 %and42, %and47 ret i32 %or } Currently crashes with opt -instcombine. I think there's an issue involving r94339 ("change the canonical form of 'cond ? -1 : 0' to be 'sext cond' instead of a select"). -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 1 04:51:50 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 1 Feb 2010 04:51:50 -0600 Subject: [LLVMbugs] [Bug 6194] New: inlining of MRV function does not remove bitcast-/shift-/ zext-/trunc-operations on x64 Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6194 Summary: inlining of MRV function does not remove bitcast-/shift- /zext-/trunc-operations on x64 Product: new-bugs Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: karrenberg at cs.uni-saarland.de CC: llvmbugs at cs.uiuc.edu For the code below, llvm-gcc generates non-optimal code for accessing and returning structs on x64. In order to conform to ABI requirements, a struct parameter which holds 3 floats is split into two parameters: a double and a float. Accessing the first two struct-values results in a series of bitcast-, zext-, lshr-, and trunc-operations (test1). It should be possible to reduce this to bitcast(i64)-shift-bitcast(float). More importantly however, if code that returns a struct is inlined into a function that defines that same struct, the corresponding series of operations as above are entirely redundant (float -> bitcast/zext/shl/zext/lshr/trunc/bitcast -> float) but do not get optimized away (test3): define void @test2(float %aX, float %aY, float %aZ, %struct.float3* nocapture %res) nounwind noinline { entry: %tmp27 = bitcast float %aY to i32 ; [#uses=1] %tmp28 = zext i32 %tmp27 to i96 ; [#uses=1] %tmp29 = shl i96 %tmp28, 32 ; [#uses=1] %tmp21 = zext i96 %tmp29 to i128 ; [#uses=1] %0 = getelementptr inbounds %struct.float3* %res, i64 0, i32 0 ; [#uses=1] store float %aX, float* %0, align 4 %1 = getelementptr inbounds %struct.float3* %res, i64 0, i32 1 ; [#uses=1] %tmp10 = lshr i128 %tmp21, 32 ; [#uses=1] %tmp11 = trunc i128 %tmp10 to i32 ; [#uses=1] %tmp12 = bitcast i32 %tmp11 to float ; [#uses=1] store float %tmp12, float* %1, align 4 %2 = getelementptr inbounds %struct.float3* %res, i64 0, i32 2 ; [#uses=1] store float %aZ, float* %2, align 4 ret void } -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 1 06:22:22 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 1 Feb 2010 06:22:22 -0600 Subject: [LLVMbugs] [Bug 6192] [mips] wrong instruction selection for multiplication In-Reply-To: Message-ID: <201002011222.o11CMMbZ019501@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6192 Bruno Cardoso Lopes changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bruno.cardoso at gmail.com Status|ASSIGNED |RESOLVED Resolution| |FIXED --- Comment #2 from Bruno Cardoso Lopes 2010-02-01 06:22:21 --- Hi, Your proposed patch is not the way to go (the instruction selection is going over ISD::MUL). I fixed it in r94977: http://llvm.org/viewvc/llvm-project?view=rev&revision=94977 Thanks, -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 1 08:40:23 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 1 Feb 2010 08:40:23 -0600 Subject: [LLVMbugs] [Bug 6195] New: instcombine crash: " replaceAllUses of value with new value of different type!" Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6195 Summary: instcombine crash: "replaceAllUses of value with new value of different type!" Product: new-bugs Version: unspecified Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: baldrick at free.fr CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4160) --> (http://llvm.org/bugs/attachment.cgi?id=4160) testcase .ll $ opt -instcombine -disable-output simd-4.ll opt: llvm/lib/VMCore/Value.cpp:317: void llvm::Value::replaceAllUsesWith(llvm::Value*): Assertion `New->getType() == getType() && "replaceAllUses of value with new value of different type!"' failed. ... -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 1 08:57:19 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 1 Feb 2010 08:57:19 -0600 Subject: [LLVMbugs] [Bug 6196] New: llc crash: "cast() argument of incompatible type!" Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6196 Summary: llc crash: "cast() argument of incompatible type!" Product: new-bugs Version: unspecified Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: baldrick at free.fr CC: llvmbugs at cs.uiuc.edu $ llc gcc37433.ll llc: llvm/include/llvm/Support/Casting.h:199: typename llvm::cast_retty::ret_type llvm::cast(const Y&) [with X = llvm::Function, Y = llvm::GlobalValue*]: Assertion `isa(Val) && "cast() argument of incompatible type!"' failed. ... 6 llc 0x0000000000993474 llvm::iplist >::splice(llvm::ilist_iterator, llvm::iplist >&, llvm::ilist_iterator) + 0 7 llc 0x0000000000ea342f llvm::X86TargetLowering::IsEligibleForTailCallOptimization(llvm::SDValue, llvm::CallingConv::ID, bool, llvm::SmallVectorImpl const&, llvm::SmallVectorImpl const&, llvm::SelectionDAG&) const + 621 8 llc 0x0000000000e9fee3 llvm::X86TargetLowering::LowerCall(llvm::SDValue, llvm::SDValue, llvm::CallingConv::ID, bool, bool&, llvm::SmallVectorImpl const&, llvm::SmallVectorImpl const&, llvm::DebugLoc, llvm::SelectionDAG&, llvm::SmallVectorImpl&) + 309 9 llc 0x0000000001174328 llvm::TargetLowering::LowerCallTo(llvm::SDValue, llvm::Type const*, bool, bool, bool, bool, unsigned int, llvm::CallingConv::ID, bool, bool, llvm::SDValue, std::vector >&, llvm::SelectionDAG&, llvm::DebugLoc, unsigned int) + 2538 ... Here's the testcase: target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64" target triple = "x86_64-unknown-linux-gnu" %"char[]" = type [1 x i8] @.str = external constant %"char[]", align 1 ; <%"char[]"*> [#uses=1] define i32 @regex_subst() nounwind { entry: %0 = tail call i32 bitcast (%"char[]"* @.str to i32 (i32)*)(i32 0) nounwind ; [#uses=1] ret i32 %0 } -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 1 09:36:53 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 1 Feb 2010 09:36:53 -0600 Subject: [LLVMbugs] [Bug 6197] New: infinite recursion in ipsccp due to block addresses Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6197 Summary: infinite recursion in ipsccp due to block addresses Product: new-bugs Version: unspecified Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: baldrick at free.fr CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4161) --> (http://llvm.org/bugs/attachment.cgi?id=4161) testcase .ll $ opt -ipsccp pr32919.1.ll -disable-output Segmentation fault (core dumped) -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 1 10:57:10 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 1 Feb 2010 10:57:10 -0600 Subject: [LLVMbugs] [Bug 6198] New: instcombine crash: "Cannot getTypeInfo() on a type that is unsized!" Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6198 Summary: instcombine crash: "Cannot getTypeInfo() on a type that is unsized!" Product: new-bugs Version: unspecified Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: baldrick at free.fr CC: llvmbugs at cs.uiuc.edu The type in question is a function type. $ opt -instcombine -disable-output 20080721-1.ll opt: llvm/lib/Target/TargetData.cpp:498: unsigned char llvm::TargetData::getAlignment(const llvm::Type*, bool) const: Assertion `Ty->isSized() && "Cannot getTypeInfo() on a type that is unsized!"' failed. ... 6 opt 0x0000000000a658d8 llvm::TargetData::getAlignment(llvm::Type const*, bool) const + 140 7 opt 0x0000000000a65b58 llvm::TargetData::getPrefTypeAlignment(llvm::Type const*) const + 40 8 opt 0x0000000000940cf7 llvm::isSafeToLoadUnconditionally(llvm::Value*, llvm::Instruction*, unsigned int, llvm::TargetData const*) + 340 Testcase: target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64" target triple = "x86_64-unknown-linux-gnu" module asm "\09.ident\09\22GCC: (GNU) 4.5.0 20100129 (experimental) LLVM: 88902:94980M\22" define i32 @test(i32 %b) nounwind readonly { entry: %0 = icmp eq i32 %b, 0 ; [#uses=1] %p_1 = select i1 %0, i8* bitcast (void ()* @bar to i8*), i8* bitcast (void ()* @foo to i8*) ; [#uses=1] %q_6 = bitcast i8* %p_1 to i8** ; [#uses=1] %D.2728_7 = load i8** %q_6, align 8 ; [#uses=1] %1 = icmp eq i8* %D.2728_7, null ; [#uses=1] %D.2731_2 = select i1 %1, i32 1, i32 0 ; [#uses=1] ret i32 %D.2731_2 } declare void @foo() declare void @bar() -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 1 11:43:08 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 1 Feb 2010 11:43:08 -0600 Subject: [LLVMbugs] [Bug 6198] instcombine crash: "Cannot getTypeInfo() on a type that is unsized!" In-Reply-To: Message-ID: <201002011743.o11Hh87p031675@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6198 Bob Wilson changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #2 from Bob Wilson 2010-02-01 11:43:08 --- Fixed in svn r94984. For some reason, I can't repro the crash. I ran an assertion-enabled opt but it seems to run OK. Since the cause of the problem seems fairly obvious, I just fixed it. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 1 13:35:43 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 1 Feb 2010 13:35:43 -0600 Subject: [LLVMbugs] [Bug 6197] infinite recursion in ipsccp due to block addresses In-Reply-To: Message-ID: <201002011935.o11JZh3F004212@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6197 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Component|new bugs |Core LLVM classes Product|new-bugs |libraries Resolution| |FIXED Version|unspecified |2.6 --- Comment #2 from Chris Lattner 2010-02-01 13:35:42 --- Fixed here: http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20100201/095402.html -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 1 14:05:10 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 1 Feb 2010 14:05:10 -0600 Subject: [LLVMbugs] [Bug 6195] instcombine crash: " replaceAllUses of value with new value of different type!" In-Reply-To: Message-ID: <201002012005.o11K5A6S005555@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6195 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Component|new bugs |Core LLVM classes Product|new-bugs |libraries Resolution| |FIXED Version|unspecified |2.5 --- Comment #2 from Chris Lattner 2010-02-01 14:05:10 --- Fixed here: http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20100201/095406.html -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 1 16:11:39 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 1 Feb 2010 16:11:39 -0600 Subject: [LLVMbugs] [Bug 6201] New: add i64 version of alloca Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6201 Summary: add i64 version of alloca Product: new-bugs Version: trunk Platform: All OS/Version: All Status: NEW Keywords: code-cleanup, code-quality Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: vhernandez at apple.com CC: llvmbugs at cs.uiuc.edu Currently the alloca instruction's number of elements operand is limited to i32. = alloca [, i32 ][, align ] ; yields {type*}:result Add a version of alloca that supports 164 number of elements. [This was originally tracked in Bug 715, but that one has been closed because other enhancement requests from that bug have been fixed.] -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 1 16:12:24 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 1 Feb 2010 16:12:24 -0600 Subject: [LLVMbugs] [Bug 715] remove mallocinst instruction, add i64 version of alloca. In-Reply-To: Message-ID: <201002012212.o11MCOEN011244@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=715 Victor Hernandez changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #10 from Victor Hernandez 2010-02-01 16:12:23 --- I have filed http://llvm.org/bugs/show_bug.cgi?id=6201 to cover the i64 alloca. Closing this bug. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 1 16:40:19 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 1 Feb 2010 16:40:19 -0600 Subject: [LLVMbugs] [Bug 6196] llc crash: "cast() argument of incompatible type!" In-Reply-To: Message-ID: <201002012240.o11MeJj9012262@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6196 Evan Cheng changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #2 from Evan Cheng 2010-02-01 16:40:19 --- Fixed: 95017. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 1 16:49:02 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 1 Feb 2010 16:49:02 -0600 Subject: [LLVMbugs] [Bug 6157] opt -O1 segfault In-Reply-To: Message-ID: <201002012249.o11Mn2CT012634@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6157 Dale Johannesen changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution| |FIXED --- Comment #17 from Dale Johannesen 2010-02-01 16:49:01 --- Right. It is simpler than I said, SelectionDAGBuilder was just not handling dbg.value. Now it is ignored, like dbg.declare. Fixed here. http://llvm.org/viewvc/llvm-project?rev=94996&view=rev http://llvm.org/viewvc/llvm-project?rev=95021&view=rev -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 1 17:36:49 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 1 Feb 2010 17:36:49 -0600 Subject: [LLVMbugs] [Bug 4515] certain enum constants have wrong type inside an enum definition In-Reply-To: Message-ID: <201002012336.o11Nangu014701@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=4515 Douglas Gregor changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dgregor at apple.com Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Douglas Gregor 2010-02-01 17:36:48 --- Fixed here: http://lists.cs.uiuc.edu/pipermail/cfe-commits/Week-of-Mon-20100201/027012.html -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 1 18:46:14 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 1 Feb 2010 18:46:14 -0600 Subject: [LLVMbugs] [Bug 6182] Cascaded and non-specific errors for ommitted semicolon after a class {} In-Reply-To: Message-ID: <201002020046.o120kEN9017548@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6182 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |DUPLICATE --- Comment #1 from Chris Lattner 2010-02-01 18:46:13 --- Tracking related issues in PR6180 *** This bug has been marked as a duplicate of bug 6180 *** -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 1 19:26:23 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 1 Feb 2010 19:26:23 -0600 Subject: [LLVMbugs] [Bug 6202] New: [mips] wrong transfer of double float value from FP register to GP register Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6202 Summary: [mips] wrong transfer of double float value from FP register to GP register Product: new-bugs Version: unspecified Platform: PC OS/Version: Linux Status: ASSIGNED Keywords: miscompilation Severity: normal Priority: P2 Component: new bugs AssignedTo: bruno.cardoso at gmail.com ReportedBy: zhou_shuchang at sina.com CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4162) --> (http://llvm.org/bugs/attachment.cgi?id=4162) test floating point sqrt #include #include int main(int argc,char** argv) { float f=argc; printf("%f\n",sqrt(f)); } with ./a.out, we get 0.0 instead of 1.0. In assembly sqrt.d $f2, $f2 mov.s $f12, $f2 ~~~~~~~~~~~~~~~ sqrt.d keep the result in $f2-$f3 pair, but only $f2 is transferred. swc1 $f12, 60($fp) -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 1 19:27:09 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 1 Feb 2010 19:27:09 -0600 Subject: [LLVMbugs] [Bug 6180] Weird error for ommitted semicolon In-Reply-To: Message-ID: <201002020127.o121R981019104@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6180 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #6 from Chris Lattner 2010-02-01 19:27:09 --- Fixed here: http://lists.cs.uiuc.edu/pipermail/cfe-commits/Week-of-Mon-20100201/027017.html For this testcase: template class a{} class temp{}; a b; class b { } we now produce: t.cc:5:10: error: expected ';' after class class a{} ^ ; t.cc:13:2: error: expected ';' after class } ^ ; We used to produce: t.cc:7:1: error: cannot combine with previous 'class' declaration specifier class temp{}; ^ t.cc:9:3: error: template argument for template type parameter must be a type a b; ^~~~ t.cc:4:16: note: template parameter is declared here template ^ t.cc:18:1: error: expected unqualified-id ^ GCC 4.2 produces: t.cc:7: error: multiple types in one declaration t.cc:9: error: non-template type ???a??? used as a template t.cc:9: error: invalid type in declaration before ???;??? token t.cc:13: error: expected unqualified-id at end of input -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 1 19:45:02 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 1 Feb 2010 19:45:02 -0600 Subject: [LLVMbugs] [Bug 6203] New: [mips] cannot copy register from FGR32 to AFGR64 class Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6203 Summary: [mips] cannot copy register from FGR32 to AFGR64 class Product: new-bugs Version: unspecified Platform: PC OS/Version: Linux Status: ASSIGNED Keywords: compile-fail Severity: normal Priority: P2 Component: new bugs AssignedTo: bruno.cardoso at gmail.com ReportedBy: zhou_shuchang at sina.com CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4163) --> (http://llvm.org/bugs/attachment.cgi?id=4163) cannot copy register from FGR32 to AFGR64 class #include int main() { register unsigned char rC0, rC1; rC0 = 0; rC1 = 255; rC0 += (float) rC1; if(rC0 == 255) printf("passed\n"); else printf("failed\n"); return 0; } we have assertion failure clang: /home/zsc/tmpd/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp:291: void llvm::InstrEmitter::AddRegisterOperand(llvm::MachineInstr*, llvm::SDValue, unsigned int, const llvm::TargetInstrDesc*, llvm::DenseMap, llvm::DenseMapInfo >&): Assertion `Emitted && "Unable to issue a copy instruction!\n"' failed. 0. Program arguments: /usr/local/bin/clang -cc1 -triple mipsel-unknown-linux-gnu -S -disable-free -main-file-name 16.c -pic-level 2 -mdisable-fp-elim -v -g -resource-dir /usr/local/lib/clang/1.1 -fmessage-length 87 -fgnu-runtime -fdiagnostics-show-option -fcolor-diagnostics -o 16.s -x c 16.c By GDB, bool MipsInstrInfo::copyRegToReg returns false (gdb) p SrcRC->Name $8 = 0x9575a01 "FGR32" (gdb) p DestRC->Name $9 = 0x95759ee "AFGR64" (gdb) f #0 llvm::MipsInstrInfo::copyRegToReg (this=0x9cf7548, MBB=..., I=..., DestReg=1039, SrcReg=1036, DestRC=0x9c5aec0, SrcRC=0x9c5afe0) at /home/zsc/tmpd/llvm/lib/Target/Mips/MipsInstrInfo.cpp:169 -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 1 20:14:21 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 1 Feb 2010 20:14:21 -0600 Subject: [LLVMbugs] [Bug 5597] Cannot mangle template arguments that are declarations In-Reply-To: Message-ID: <201002020214.o122ELNJ020920@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=5597 Anders Carlsson changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |andersca at mac.com Status|NEW |RESOLVED Resolution| |FIXED --- Comment #6 from Anders Carlsson 2010-02-01 20:14:20 --- Both attached test cases compile fine now, closing. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 1 20:34:18 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 1 Feb 2010 20:34:18 -0600 Subject: [LLVMbugs] [Bug 6204] New: crash legalizing vector select Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6204 Summary: crash legalizing vector select Product: libraries Version: trunk Platform: PC OS/Version: All Status: NEW Keywords: compile-fail Severity: normal Priority: P2 Component: Common Code Generator Code AssignedTo: unassignedbugs at nondot.org ReportedBy: clattner at apple.com CC: llvmbugs at cs.uiuc.edu This testcase on x86: define <4 x i32> @test(<4 x i32> %a, <4 x i32> %b, <4 x i1> %c) { %d = select <4 x i1> %c, <4 x i32> %a, <4 x i32> %b ret <4 x i32> %d } Crashes with: $ llc t.ll SplitVectorOperand Op #0: 0x2025950: v4i32 = select 0x20258cc, 0x202508c, 0x2025194 [ORD=1] Do not know how to split this operator's operand! UNREACHABLE executed at LegalizeVectorTypes.cpp:967! -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 2 02:46:53 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 2 Feb 2010 02:46:53 -0600 Subject: [LLVMbugs] [Bug 6208] New: ; after struct definition Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6208 Summary: ; after struct definition Product: clang Version: unspecified Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: Semantic Analyzer AssignedTo: unassignedclangbugs at nondot.org ReportedBy: rdivacky at freebsd.org CC: clattner at apple.com, llvmbugs at cs.uiuc.edu pes delta$ cat 000.c enum lapic_clock { LAPIC_CLOCK_NONE, }; struct lvt { } static lapics[0xfe + 1]; pes delta$ gcc -fsyntax-only 000.c && echo yes yes pes delta$ clang -fsyntax-only 000.c 000.c:5:2: error: expected ';' after struct } static lapics[0xfe + 1]; ^ ; 000.c:5:10: warning: type specifier missing, defaults to 'int' [-Wimplicit-int] } static lapics[0xfe + 1]; ~~~~~~ ^ 2 diagnostics generated. pes delta$ -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 2 04:16:50 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 2 Feb 2010 04:16:50 -0600 Subject: [LLVMbugs] [Bug 6204] crash legalizing vector select In-Reply-To: Message-ID: <201002021016.o12AGoiX021720@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6204 Duncan Sands changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |baldrick at free.fr Status|NEW |RESOLVED Resolution| |DUPLICATE --- Comment #3 from Duncan Sands 2010-02-02 04:16:49 --- Codegen does not support vectors with an i1 element type, or any other funky element type for that matter. In fact even in the IR these are not supported properly: some places think that <8 x i1> is one byte long (eg: you can bitcast it to an i8), while others think it is eight bytes long. The whole thing is a mess and needs a command decision from Chris as to what such vectors really look and quack like. There is already a bunch of discussion in PR1784, so marking this as a duplicate of that. *** This bug has been marked as a duplicate of bug 1784 *** -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 2 05:01:39 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 2 Feb 2010 05:01:39 -0600 Subject: [LLVMbugs] [Bug 6209] New: Keep Results Into SIMD Registers Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6209 Summary: Keep Results Into SIMD Registers Product: new-bugs Version: unspecified Platform: PC OS/Version: All Status: NEW Keywords: code-quality Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: bearophile at mailas.com CC: llvmbugs at cs.uiuc.edu An article by Gustavo Oliveira: http://www.gamasutra.com/view/feature/4248/designing_fast_crossplatform_simd_.php?page=3 See the part: 2. Keep Results Into SIMD Registers It suggests to don't write code like this (note the deltalength, that's a float): Vec4& x2 = m_x[i2]; Vec4 delta = x2-x1; float deltalength = Sqrt(Dot(delta,delta)); float diff = (deltalength-restlength)/deltalength; x1 += delta*half*diff; x2 -= delta*half*diff; He says that's expensive since the compiler needs to generate code that will move data from and to the SIMD and FPU registers. He suggests to write it like this, assuming the "Dot" function above replicates the result into the SIMD 4-quad words and the "w" component zeroed-out. Now the expensive casting operations are no longer necessary: Vec4& x2 = m_x[i2]; Vec4 delta = x2-x1; Vec4 deltalength = Sqrt(Dot(delta,delta)); Vec4 diff = (deltalength-restlength)/deltalength; x1 += delta*half*diff; x2 -= delta*half*diff; Maybe LLVM can sometimes perform a similar optimization (I think it's not already done by LLVM, but I can be wrong). -------------------- Below there's another interesting section: 3. Re-Arrange Data to Be Friendly to SIMD operations But this looks like an optimization harder to do for a C compiler. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 2 05:04:55 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 2 Feb 2010 05:04:55 -0600 Subject: [LLVMbugs] [Bug 6210] New: -O3, -Os, -Oe: optimize for running time, binary size, or energy Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6210 Summary: -O3, -Os, -Oe: optimize for running time, binary size, or energy Product: new-bugs Version: unspecified Platform: PC OS/Version: All Status: NEW Keywords: new-feature Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: bearophile at mailas.com CC: llvmbugs at cs.uiuc.edu Current CPUs like Core duo or i7 are quite redundant, they can perform the same operations in various ways. Such ways use different amounts of electricity. Even stripped down CPUs like Atom have some redundancy. In very big data centres, like Google ones, the limiting factor is often the amount of electricity used by the very large number of computers present. Mobile phones, ebook readers, and similar gadgets often have powerful 32 bit CPUs with many MB of RAM, but for them it's important to maximize the number of hours they can run with a battery charge. So in theory it can be added a "-Oe" compilation argument to LLVM that tells the compiler to compile the code trying to minimize the amount of electricity the running program will use on the specified CPU. For example in -Oe mode the compiler can do the opposite of what I've written in bug 6209, and use the FP stack to store a single float value, saving the power needed to store an move around 128 bits in a SSE register. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 2 07:53:21 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 2 Feb 2010 07:53:21 -0600 Subject: [LLVMbugs] [Bug 6212] New: Clang misses optimisation on if vs else if Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6212 Summary: Clang misses optimisation on if vs else if Product: libraries Version: trunk Platform: PC OS/Version: All Status: NEW Severity: normal Priority: P2 Component: Scalar Optimizations AssignedTo: unassignedbugs at nondot.org ReportedBy: arplynn at gmail.com CC: llvmbugs at cs.uiuc.edu int test1(int mainType, int subType) { if(mainType == 7) { subType = 4; } else if(mainType == 9) { subType = 6; } else if(mainType == 11) { subType = 9; } return subType; } int test2(int mainType, int subType) { if(mainType == 7) { subType = 4; } if(mainType == 9) { subType = 6; } if(mainType == 11) { subType = 9; } return subType; } Clang generates more efficient code in the second case than the first, because the first is transformed into a switch which then gets expanded to longer code by the code generator. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 2 09:40:01 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 2 Feb 2010 09:40:01 -0600 Subject: [LLVMbugs] [Bug 6213] New: llvm-config --cflags differ when compiled using cmake/ configure Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6213 Summary: llvm-config --cflags differ when compiled using cmake/configure Product: tools Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: llvm-config AssignedTo: unassignedbugs at nondot.org ReportedBy: xerxes at zafena.se CC: llvmbugs at cs.uiuc.edu svn co http://llvm.org/svn/llvm-project/llvm/trunk llvm mkdir llvm-configure mkdir llvm-cmake configure: cd llvm-configure ../llvm/configure make xerxes at xerxes-J464X:~/llvmtest/llvm-configure/Debug/bin$ ./llvm-config --cflags -I/home/xerxes/llvmtest/llvm-configure/../llvm/include -I/home/xerxes/llvmtest/llvm-configure/include -D_DEBUG -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -g -fPIC CMAKE: cd llvm-cmake cmake ../llvm make xerxes at xerxes-J464X:~/llvmtest/llvm-cmake/bin$ ./llvm-config --cflags -I/home/xerxes/llvmtest/llvm/include -I/home/xerxes/llvmtest/llvm-cmake/include -D_GNU_SOURCE -fPIC -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -Wall -W -Wno-unused-parameter -Wwrite-strings -pedantic -Wno-long-long as can be seen cmake generated llvm-config reports totally different cflags than the configure generated dito. some of the options really break a lot of external projects like the -pedantic -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 2 11:32:55 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 2 Feb 2010 11:32:55 -0600 Subject: [LLVMbugs] [Bug 6208] ; after struct definition In-Reply-To: Message-ID: <201002021732.o12HWtXL008636@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6208 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Chris Lattner 2010-02-02 11:32:55 --- Fixed: http://lists.cs.uiuc.edu/pipermail/cfe-commits/Week-of-Mon-20100201/027041.html C is a horrible horrible language :) -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 2 12:10:03 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 2 Feb 2010 12:10:03 -0600 Subject: [LLVMbugs] [Bug 6210] -O3, -Os, -Oe: optimize for running time, binary size, or energy In-Reply-To: Message-ID: <201002021810.o12IA3gO010224@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6210 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID --- Comment #1 from Chris Lattner 2010-02-02 12:10:03 --- Almost all computer literature shows that the best way to save power (on mainstream cpus that don't have super crazy power features) is to execute code faster so that the chip can enter a low power state sooner. Faster = lower power. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 2 16:00:36 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 2 Feb 2010 16:00:36 -0600 Subject: [LLVMbugs] [Bug 6115] What does 'Cannot yet select: intrinsic %llvm.x86.sse41.dpps' mean? In-Reply-To: Message-ID: <201002022200.o12M0a8v020657@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6115 Eric Christopher changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |WORKSFORME --- Comment #7 from Eric Christopher 2010-02-02 16:00:35 --- FWIW llc is the easiest way to turn a .ll to a .s file. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 2 16:14:50 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 2 Feb 2010 16:14:50 -0600 Subject: [LLVMbugs] [Bug 6214] New: scalar absolute value of single precision floating point values Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6214 Summary: scalar absolute value of single precision floating point values Product: libraries Version: 2.6 Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: Backend: X86 AssignedTo: unassignedbugs at nondot.org ReportedBy: llvm at henning-thielemann.de CC: llvmbugs at cs.uiuc.edu I noticed that LLVM uses SSE registers also for scalar floating point operations. Thus when I want to compute the absolute value, it would be certainly most efficient to implement it using 'andss' or 'andsd' with an appropriate mask to clear the sign bit. (Similarly LLVM's X86 backend implements negation using 'xorss'.) However, when I cast a single precision floating point value to a 32 bit integer and clear the sign bit in this representation, then the X86 code generator moves the floating point value to a general purpose register, clears the sign bit there and moves the floating point value back to an XMM register for subsequent operations. The only way to stay in XMM registers is to cast the whole vector to a 32 bit integer vector and apply an 128 bit mask that clears bit 31. This would be certainly inefficient, if the floating point number was in an FPU register before. (But so far I have never seen LLVM using FPU registers. I have only seen XMM usage and calls to math lib for sin, cos, exp.) -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 2 16:27:18 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 2 Feb 2010 16:27:18 -0600 Subject: [LLVMbugs] [Bug 6215] New: Target dependent selection of intrinsics Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6215 Summary: Target dependent selection of intrinsics Product: libraries Version: 2.6 Platform: PC OS/Version: Linux Status: NEW Severity: enhancement Priority: P2 Component: Backend: X86 AssignedTo: unassignedbugs at nondot.org ReportedBy: llvm at henning-thielemann.de CC: llvmbugs at cs.uiuc.edu Using the LLVM interface for Haskell I generate, compile and run llvm code at runtime of a Haskell program. I want to make use of special SSE commands like 'haddps', 'minps', 'dpps' if the corresponding SSE intruction set is available on the machine the program runs on. I have found that X86Subtarget has methods hasSSE3 and friends that would solve the problem. However, they do not seem to be available in the C interface. Thus my feature request is to add according functions to the C interface to LLVM or to extend documentation by a paragraph on how to access hasSSE checks with the current C interface. Maybe I have to write such C wrappers myself? -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 2 16:41:22 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 2 Feb 2010 16:41:22 -0600 Subject: [LLVMbugs] [Bug 6215] Target dependent selection of intrinsics In-Reply-To: Message-ID: <201002022241.o12MfMcG022622@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6215 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID --- Comment #1 from Chris Lattner 2010-02-02 16:41:21 --- You can already detect what CPU you're on by using the CPUID instruction directly. The intrinsics for these SSE instructions you want are already exposed by llvm.x86.foo intrinsics. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 2 18:47:58 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 2 Feb 2010 18:47:58 -0600 Subject: [LLVMbugs] [Bug 6216] New: Parse failure with struct definition in __builtin_offset Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6216 Summary: Parse failure with struct definition in __builtin_offset Product: clang Version: trunk Platform: PC OS/Version: All Status: NEW Severity: normal Priority: P2 Component: parser AssignedTo: unassignedclangbugs at nondot.org ReportedBy: dgregor at apple.com CC: llvmbugs at cs.uiuc.edu blackthorn:clang dgregor$ cat t.c int f() { return __builtin_offsetof(struct { char c; int i; }, i); } blackthorn:clang dgregor$ gcc -fsyntax-only t.c blackthorn:clang dgregor$ clang -fsyntax-only t.c t.c:1:62: error: expected ';' after struct int f() { return __builtin_offsetof(struct { char c; int i; }, i); } ^ ; t.c:1:62: error: expected ',' int f() { return __builtin_offsetof(struct { char c; int i; }, i); } ^ , t.c:1:62: error: expected expression t.c:1:65: error: expected expression int f() { return __builtin_offsetof(struct { char c; int i; }, i); } ^ 4 diagnostics generated. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 2 19:45:47 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 2 Feb 2010 19:45:47 -0600 Subject: [LLVMbugs] [Bug 6216] Parse failure with struct definition in __builtin_offset In-Reply-To: Message-ID: <201002030145.o131jl49031354@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6216 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Chris Lattner 2010-02-02 19:45:46 --- Fixed: http://lists.cs.uiuc.edu/pipermail/cfe-commits/Week-of-Mon-20100201/027065.html -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 2 20:28:31 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 2 Feb 2010 20:28:31 -0600 Subject: [LLVMbugs] [Bug 6218] New: Broken debug info for almost every c++ app Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6218 Summary: Broken debug info for almost every c++ app Product: clang Version: unspecified Platform: PC OS/Version: All Status: NEW Severity: normal Priority: P2 Component: LLVM Codegen AssignedTo: unassignedclangbugs at nondot.org ReportedBy: asl at math.spbu.ru CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4167) --> (http://llvm.org/bugs/attachment.cgi?id=4167) Bitcode Consider the attached .bc produced by clang++ -g, the generated assembler is invalid: $llc main.bc && gcc -g main.s main.s: Assembler messages: main.s:35733: Fatal error: duplicate .debug_line sections and indeed: $ grep -n debug_line main.s 12: .section .debug_line,"", at progbits 31370: .section .debug_line,"", at progbits -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Wed Feb 3 07:13:46 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Wed, 3 Feb 2010 07:13:46 -0600 Subject: [LLVMbugs] [Bug 6219] New: Tablegen lexer misreading cmp${cc}pd ? Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6219 Summary: Tablegen lexer misreading cmp${cc}pd ? Product: new-bugs Version: unspecified Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: baldrick at free.fr CC: llvmbugs at cs.uiuc.edu Recently tblgen started throwing (and catching) an exception internally during the LLVM build. It doesn't like this snippet from X86InstrSSE.td: def CMPPDrmi : PDIi8<0xC2, MRMSrcMem, (outs VR128:$dst), (ins VR128:$src1, f128mem:$src, SSECC:$cc), "cmp${cc}pd\t{$src, $dst|$dst, $src}", [(set VR128:$dst, (int_x86_sse2_cmp_pd VR128:$src1, The exception is thrown in getOperandNamed with the message: Instruction 'CMPPDrmi' does not have an operand named '$ccpd'! It looks like ${cc}pd is being wrongly parsed as ccpd. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Wed Feb 3 10:17:10 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Wed, 3 Feb 2010 10:17:10 -0600 Subject: [LLVMbugs] [Bug 6221] New: ExecutionEngine::create is ambiguous as of 94686 Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6221 Summary: ExecutionEngine::create is ambiguous as of 94686 Product: libraries Version: trunk Platform: All OS/Version: All Status: NEW Severity: normal Priority: P2 Component: Generic Execution Engine Support AssignedTo: unassignedbugs at nondot.org ReportedBy: ddneff at hotmail.com CC: llvmbugs at cs.uiuc.edu ExecutionEngine has two create functions: static ExecutionEngine* create(Module *M); static ExecutionEngine *create(Module *M, bool ForceInterpreter = false, std::string *ErrorStr = 0, CodeGenOpt::Level OptLevel = CodeGenOpt::Default, bool GVsWithCode = true); Notice that the second version has the same first parameter type as the first, and all of the following arguments have default parameters. GCC4.3 (probably others) won't let you call the first version because its ambiguous, so it might as well be removed. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Wed Feb 3 11:48:08 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Wed, 3 Feb 2010 11:48:08 -0600 Subject: [LLVMbugs] [Bug 6222] New: Assert "getTerminator returned null" for a verified function Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6222 Summary: Assert "getTerminator returned null" for a verified function Product: new-bugs Version: trunk Platform: Macintosh URL: http://xlr.sf.net OS/Version: MacOS X Status: NEW Keywords: crash-on-invalid, regression Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: christophe at taodyne.com CC: llvmbugs at cs.uiuc.edu This is exposed by test 02.Data/rects.xl in the test suite of the XL compiler. We generate functions by exploring a tree of possibilities. In some cases, we will drop code that we generated. This may result in a basic block that is not properly terminated. This passes "verifyFunction" but then asserts in JIT::getPointerToFunction. The stack trace for the assert is: #0 llvm::SuccIterator::SuccIterator (this=0x7fff5fbfd4a0, T=0x0) at CFG.h:99 #1 0x0000000100682e0f in llvm::succ_begin (BB=0x1022bbb80) at CFG.h:204 #2 0x0000000100696379 in llvm::GraphTraits::child_begin (N=0x1022bbb80) at CFG.h:231 #3 0x000000010083bc4d in llvm::DFSPass > (DT=@0x1022263c0, V=0x1022bbb80, N=0) at DominatorInternals.h:65 #4 0x000000010083bfb3 in llvm::Calculate (DT=@0x1022263c0, F=@0x1022bbaa0) at DominatorInternals.h:253 #5 0x000000010083c6a1 in llvm::DominatorTreeBase::recalculate (this=0x1022263c0, F=@0x1022bbaa0) at Dominators.h:671 #6 0x000000010083319b in llvm::DominatorTree::runOnFunction (this=0x102226390, F=@0x1022bbaa0) at Dominators.cpp:58 #7 0x00000001008932f2 in llvm::FPPassManager::runOnFunction (this=0x102224bd0, F=@0x1022bbaa0) at PassManager.cpp:1348 #8 0x0000000100894f65 in llvm::FunctionPassManagerImpl::run (this=0x102224660, F=@0x1022bbaa0) at PassManager.cpp:1300 #9 0x0000000100895114 in llvm::FunctionPassManager::run (this=0x102223ca0, F=@0x1022bbaa0) at PassManager.cpp:1230 #10 0x00000001005039d3 in llvm::JIT::runJITOnFunctionUnlocked (this=0x102224560, F=0x1022ccef0, locked=@0x7fff5fbfdb00) at JIT.cpp:642 #11 0x0000000100503c72 in llvm::JIT::getPointerToFunction (this=0x102224560, F=0x1022ccef0) at JIT.cpp:680 #12 0x000000010003e5ea in XL::CompiledUnit::Finalize (this=0x7fff5fbfdbe0) at compiler.cpp:599 The basic block being looked at contains the following: p debugv(BB) allocas: %result = alloca %tree* ; <%tree**> [#uses=3] store %tree* %0, %tree** %result %loc1 = alloca %tree* ; <%tree**> [#uses=1] %loc2 = alloca %tree* ; <%tree**> [#uses=4] %computed = alloca i1 ; [#uses=4] store i1 false, i1* %computed %loc3 = alloca %tree* ; <%tree**> [#uses=1] %loc4 = alloca %tree* ; <%tree**> [#uses=1] %treek = load %tree** @xlcst7 ; <%tree*> [#uses=2] store %tree* %treek, %tree** %loc2 %loc6 = alloca %tree* ; <%tree**> [#uses=2] %computed7 = alloca i1 ; [#uses=3] store i1 false, i1* %computed7 %loc12 = alloca %tree* ; <%tree**> [#uses=2] %computed15 = alloca i1 ; [#uses=3] store i1 false, i1* %computed15 %loc17 = alloca %tree* ; <%tree**> [#uses=6] store %tree* %1, %tree** %loc17 %loc22 = alloca %tree* ; <%tree**> [#uses=9] %computed23 = alloca i1 ; [#uses=7] store i1 false, i1* %computed23 %loc29 = alloca %tree* ; <%tree**> [#uses=2] %computed30 = alloca i1 ; [#uses=3] store i1 false, i1* %computed30 %loc31 = alloca %tree* ; <%tree**> [#uses=4] %computed34 = alloca i1 ; [#uses=9] store i1 false, i1* %computed34 %loc36 = alloca %tree* ; <%tree**> [#uses=20] store %tree* %2, %tree** %loc36 %loc44 = alloca %tree* ; <%tree**> [#uses=2] %computed45 = alloca i1 ; [#uses=3] store i1 false, i1* %computed45 %treek49 = load %tree** @xlcst9 ; <%tree*> [#uses=2] store %tree* %treek49, %tree** %loc22 %loc55 = alloca %tree* ; <%tree**> [#uses=2] %computed56 = alloca i1 ; [#uses=3] store i1 false, i1* %computed56 %loc68 = alloca %tree* ; <%tree**> [#uses=2] %computed69 = alloca i1 ; [#uses=3] store i1 false, i1* %computed69 %treek87 = load %tree** @xlcst14 ; <%tree*> [#uses=2] store %tree* %treek87, %tree** %loc6 The function doesn't really look like it uses that basic block anymore: define internal %tree* @xl_eval15(%tree*, %tree*) { allocas: %treek = load %tree** @xlcst17 ; <%tree*> [#uses=1] %treek71 = load %tree** @xlcst20 ; <%tree*> [#uses=0] %glob = load %tree** @xlint16 ; <%tree*> [#uses=1] %2 = tail call %tree* @xl_eval4(%tree* %treek, %tree* %1, %tree* %glob) ; <%tree*> [#uses=1] %3 = tail call %tree* @xl_evaluate(%tree* %2) ; <%tree*> [#uses=0] %glob80 = load %tree** @xlcst19 ; <%tree*> [#uses=1] %4 = tail call %tree* (%tree*, i32, ...)* @xl_new_closure(%tree* %glob80, i32 1, %tree* %1) ; <%tree*> [#uses=1] %glob83 = load %tree** @xlcst20 ; <%tree*> [#uses=1] %glob85 = load %tree** @xlint22 ; <%tree*> [#uses=1] %5 = tail call %tree* @xl_eval3(%tree* %glob83, %tree* %4, %tree* %glob85) ; <%tree*> [#uses=1] %6 = tail call %tree* @xl_evaluate(%tree* %5) ; <%tree*> [#uses=1] %7 = tail call %tree* @xl_evaluate(%tree* %6) ; <%tree*> [#uses=1] ret %tree* %7 } Before optimizations, it looked like: define internal %tree* @xl_eval15(%tree*, %tree*) { allocas: %result = alloca %tree* ; <%tree**> [#uses=4] store %tree* %0, %tree** %result %loc1 = alloca %tree* ; <%tree**> [#uses=5] %loc2 = alloca %tree* ; <%tree**> [#uses=4] %computed = alloca i1 ; [#uses=4] store i1 false, i1* %computed %loc3 = alloca %tree* ; <%tree**> [#uses=1] %treek = load %tree** @xlcst17 ; <%tree*> [#uses=2] store %tree* %treek, %tree** %loc2 %loc5 = alloca %tree* ; <%tree**> [#uses=8] %computed6 = alloca i1 ; [#uses=7] store i1 false, i1* %computed6 %loc11 = alloca %tree* ; <%tree**> [#uses=5] %computed12 = alloca i1 ; [#uses=4] store i1 false, i1* %computed12 %loc19 = alloca %tree* ; <%tree**> [#uses=1] %computed20 = alloca i1 ; [#uses=2] store i1 false, i1* %computed20 %loc21 = alloca %tree* ; <%tree**> [#uses=2] %computed24 = alloca i1 ; [#uses=5] store i1 false, i1* %computed24 %loc26 = alloca %tree* ; <%tree**> [#uses=10] store %tree* %1, %tree** %loc26 %loc32 = alloca %tree* ; <%tree**> [#uses=1] %computed33 = alloca i1 ; [#uses=2] store i1 false, i1* %computed33 %treek38 = load %tree** @xlcst19 ; <%tree*> [#uses=2] store %tree* %treek38, %tree** %loc11 %loc44 = alloca %tree* ; <%tree**> [#uses=1] %computed45 = alloca i1 ; [#uses=2] store i1 false, i1* %computed45 %loc57 = alloca %tree* ; <%tree**> [#uses=1] %computed58 = alloca i1 ; [#uses=2] store i1 false, i1* %computed58 %treek71 = load %tree** @xlcst20 ; <%tree*> [#uses=2] store %tree* %treek71, %tree** %loc5 %loc76 = alloca %tree* ; <%tree**> [#uses=2] %2 = load %tree** @xlcst19 ; <%tree*> [#uses=1] store %tree* %2, %tree** %loc76 %loc81 = alloca %tree* ; <%tree**> [#uses=3] %3 = load %tree** @xlcst19 ; <%tree*> [#uses=1] store %tree* %3, %tree** %loc81 %computed89 = alloca i1 ; [#uses=3] store i1 false, i1* %computed89 %computed92 = alloca i1 ; [#uses=2] store i1 false, i1* %computed92 br label %entry entry: ; preds = %allocas %loc = load %tree** %result ; <%tree*> [#uses=1] store %tree* %loc, %tree** %loc1 %lazy = load i1* %computed ; [#uses=1] br i1 %lazy, label %skip, label %work exit: ; preds = %skip7 %retval = load %tree** %result ; <%tree*> [#uses=1] ret %tree* %retval skip: ; preds = %empty, %subexpr, %entry %loc4 = load %tree** %loc2 ; <%tree*> [#uses=1] %4 = call %tree* @xl_evaluate(%tree* %loc4) ; <%tree*> [#uses=1] store %tree* %4, %tree** %loc2 store i1 true, i1* %computed %lazy9 = load i1* %computed6 ; [#uses=1] br i1 %lazy9, label %skip7, label %work8 work: ; preds = %entry br label %subexpr subexpr: ; preds = %work store %tree* %1, %tree** %loc3 %intk = load %tree** @xlint16 ; <%tree*> [#uses=0] %glob = load %tree** @xlint16 ; <%tree*> [#uses=1] %5 = call %tree* @xl_eval4(%tree* %treek, %tree* %1, %tree* %glob) ; <%tree*> [#uses=1] store %tree* %5, %tree** %loc2 store i1 true, i1* %computed br label %skip empty: ; No predecessors! br label %skip skip7: ; preds = %empty86, %subexpr78, %skip %loc87 = load %tree** %loc5 ; <%tree*> [#uses=1] %6 = call %tree* @xl_evaluate(%tree* %loc87) ; <%tree*> [#uses=1] store %tree* %6, %tree** %loc5 store i1 true, i1* %computed6 %loc88 = load %tree** %loc5 ; <%tree*> [#uses=1] store %tree* %loc88, %tree** %loc1 store i1 true, i1* %computed89 %loc90 = load %tree** %loc1 ; <%tree*> [#uses=1] %7 = call %tree* @xl_evaluate(%tree* %loc90) ; <%tree*> [#uses=1] store %tree* %7, %tree** %loc1 store i1 true, i1* %computed89 %loc91 = load %tree** %loc1 ; <%tree*> [#uses=1] store %tree* %loc91, %tree** %result store i1 true, i1* %computed92 br label %exit work8: ; preds = %skip br label %subexpr78 subexpr10: ; No predecessors! %lazy15 = load i1* %computed12 ; [#uses=1] br i1 %lazy15, label %skip13, label %work14 skip13: ; preds = %fail53, %isGood62, %isGood37, %subexpr10 %loc67 = load %tree** %loc11 ; <%tree*> [#uses=1] %tagPtr = getelementptr %tree* %loc67, i32 0, i32 0 ; [#uses=1] %tag = load i64* %tagPtr ; [#uses=1] %tagAndMask = and i64 %tag, 7 ; [#uses=1] %isRightTag = icmp eq i64 %tagAndMask, 0 ; [#uses=1] br i1 %isRightTag, label %isRightKind, label %fail66 work14: ; preds = %subexpr10 br label %subexpr16 subexpr16: ; preds = %work14 %glob17 = load %tree** @integer ; <%tree*> [#uses=0] %glob18 = load %tree** @integer ; <%tree*> [#uses=1] store %tree* %glob18, %tree** %loc19 store i1 true, i1* %computed20 store %tree* %1, %tree** %loc21 %lazy25 = load i1* %computed24 ; [#uses=1] br i1 %lazy25, label %skip22, label %work23 skip22: ; preds = %work23, %subexpr16 %loc28 = load %tree** %loc26 ; <%tree*> [#uses=1] %glob29 = load %tree** @integer ; <%tree*> [#uses=1] %8 = call i1 @xl_type_check(%tree* %loc28, %tree* %glob29) ; [#uses=1] br i1 %8, label %isGood, label %fail work23: ; preds = %subexpr16 %loc27 = load %tree** %loc26 ; <%tree*> [#uses=1] %9 = call %tree* @xl_evaluate(%tree* %loc27) ; <%tree*> [#uses=1] store %tree* %9, %tree** %loc26 store i1 true, i1* %computed24 br label %skip22 fail: ; preds = %isGood, %skip22 br label %subexpr41 isGood: ; preds = %skip22 %glob30 = load %tree** @integer ; <%tree*> [#uses=0] %glob31 = load %tree** @integer ; <%tree*> [#uses=1] store %tree* %glob31, %tree** %loc32 store i1 true, i1* %computed33 %intk34 = load %tree** @xlint18 ; <%tree*> [#uses=0] %glob35 = load %tree** @xlint18 ; <%tree*> [#uses=1] %glob36 = load %tree** @integer ; <%tree*> [#uses=1] %10 = call i1 @xl_type_check(%tree* %glob35, %tree* %glob36) ; [#uses=1] br i1 %10, label %isGood37, label %fail isGood37: ; preds = %isGood %loc39 = load %tree** %loc26 ; <%tree*> [#uses=1] %glob40 = load %tree** @xlint18 ; <%tree*> [#uses=1] %11 = call %tree* @xl_BinarySubInt(%tree* %treek38, %tree* %loc39, %tree* %glob40) ; <%tree*> [#uses=1] store %tree* %11, %tree** %loc11 store i1 true, i1* %computed12 br label %skip13 subexpr41: ; preds = %fail %glob42 = load %tree** @real ; <%tree*> [#uses=0] %glob43 = load %tree** @real ; <%tree*> [#uses=1] store %tree* %glob43, %tree** %loc44 store i1 true, i1* %computed45 %loc46 = load %tree** %loc26 ; <%tree*> [#uses=1] store %tree* %loc46, %tree** %loc21 %lazy49 = load i1* %computed24 ; [#uses=1] br i1 %lazy49, label %skip47, label %work48 skip47: ; preds = %work48, %subexpr41 %loc51 = load %tree** %loc26 ; <%tree*> [#uses=1] %glob52 = load %tree** @real ; <%tree*> [#uses=1] %12 = call i1 @xl_type_check(%tree* %loc51, %tree* %glob52) ; [#uses=1] br i1 %12, label %isGood54, label %fail53 work48: ; preds = %subexpr41 %loc50 = load %tree** %loc26 ; <%tree*> [#uses=1] %13 = call %tree* @xl_evaluate(%tree* %loc50) ; <%tree*> [#uses=1] store %tree* %13, %tree** %loc26 store i1 true, i1* %computed24 br label %skip47 fail53: ; preds = %isGood54, %skip47 br label %skip13 isGood54: ; preds = %skip47 %glob55 = load %tree** @real ; <%tree*> [#uses=0] %glob56 = load %tree** @real ; <%tree*> [#uses=1] store %tree* %glob56, %tree** %loc57 store i1 true, i1* %computed58 %glob59 = load %tree** @xlint18 ; <%tree*> [#uses=0] %glob60 = load %tree** @xlint18 ; <%tree*> [#uses=1] %glob61 = load %tree** @real ; <%tree*> [#uses=1] %14 = call i1 @xl_type_check(%tree* %glob60, %tree* %glob61) ; [#uses=1] br i1 %14, label %isGood62, label %fail53 isGood62: ; preds = %isGood54 %glob63 = load %tree** @xlcst19 ; <%tree*> [#uses=1] %loc64 = load %tree** %loc26 ; <%tree*> [#uses=1] %glob65 = load %tree** @xlint18 ; <%tree*> [#uses=1] %15 = call %tree* @xl_BinarySubReal(%tree* %glob63, %tree* %loc64, %tree* %glob65) ; <%tree*> [#uses=1] store %tree* %15, %tree** %loc11 store i1 true, i1* %computed12 br label %skip13 fail66: ; preds = %isRightKind, %skip13 %glob72 = load %tree** @xlcst20 ; <%tree*> [#uses=1] %16 = call %tree* @xl_type_error(%tree* %glob72) ; <%tree*> [#uses=1] store %tree* %16, %tree** %loc5 store i1 true, i1* %computed6 unreachable isRightKind: ; preds = %skip13 %loc68 = load %tree** %loc11 ; <%tree*> [#uses=1] %17 = bitcast %tree* %loc68 to %integer* ; <%integer*> [#uses=1] %18 = getelementptr %integer* %17, i32 0, i32 4 ; [#uses=1] %treeValue = load i64* %18 ; [#uses=1] %isGood69 = icmp eq i64 %treeValue, 0 ; [#uses=1] br i1 %isGood69, label %isGood70, label %fail66 isGood70: ; preds = %isRightKind %19 = call %tree* @xl_type_error(%tree* %treek71) ; <%tree*> [#uses=1] store %tree* %19, %tree** %loc5 store i1 true, i1* %computed6 unreachable subexpr73: ; No predecessors! %glob74 = load %tree** @xlcst19 ; <%tree*> [#uses=0] %glob75 = load %tree** @xlcst19 ; <%tree*> [#uses=1] %20 = call %tree* (%tree*, i32, ...)* @xl_new_closure(%tree* %glob75, i32 1, %tree* %1) ; <%tree*> [#uses=1] store %tree* %20, %tree** %loc76 %glob77 = load %tree** @xlcst20 ; <%tree*> [#uses=1] %21 = call %tree* @xl_type_error(%tree* %glob77) ; <%tree*> [#uses=1] store %tree* %21, %tree** %loc5 store i1 true, i1* %computed6 unreachable subexpr78: ; preds = %work8 %glob79 = load %tree** @xlcst19 ; <%tree*> [#uses=0] %glob80 = load %tree** @xlcst19 ; <%tree*> [#uses=1] %22 = call %tree* (%tree*, i32, ...)* @xl_new_closure(%tree* %glob80, i32 1, %tree* %1) ; <%tree*> [#uses=1] store %tree* %22, %tree** %loc81 %intk82 = load %tree** @xlint22 ; <%tree*> [#uses=0] %glob83 = load %tree** @xlcst20 ; <%tree*> [#uses=1] %loc84 = load %tree** %loc81 ; <%tree*> [#uses=1] %glob85 = load %tree** @xlint22 ; <%tree*> [#uses=1] %23 = call %tree* @xl_eval3(%tree* %glob83, %tree* %loc84, %tree* %glob85) ; <%tree*> [#uses=1] store %tree* %23, %tree** %loc5 store i1 true, i1* %computed6 br label %skip7 empty86: ; No predecessors! br label %skip7 } I will fix my side (making sure there is a terminator), but I think that verifyFunction should have caught it. Also, I am pretty sure that the same input used to work, although due to numerous incompatible changes in the LLVM source-code, I have not been able to do a full regression analysis. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Wed Feb 3 13:18:33 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Wed, 3 Feb 2010 13:18:33 -0600 Subject: [LLVMbugs] [Bug 6221] ExecutionEngine::create is ambiguous as of 94686 In-Reply-To: Message-ID: <201002031918.o13JIXtW025477@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6221 Jeffrey Yasskin changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Jeffrey Yasskin 2010-02-03 13:18:32 --- Oops. Should be fixed in r95236. Thanks for the report. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Wed Feb 3 13:48:54 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Wed, 3 Feb 2010 13:48:54 -0600 Subject: [LLVMbugs] [Bug 4409] LLVM needs a tool for pattern matching LLVM IR In-Reply-To: Message-ID: <201002031948.o13JmsJM026856@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=4409 Daniel Dunbar changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Daniel Dunbar 2010-02-03 13:48:54 --- FileCheck has basically solved this. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Wed Feb 3 15:59:30 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Wed, 3 Feb 2010 15:59:30 -0600 Subject: [LLVMbugs] [Bug 6223] New: ARM thumb target fails to JIT tPUSH Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6223 Summary: ARM thumb target fails to JIT tPUSH Product: libraries Version: trunk Platform: Other OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: Backend: ARM AssignedTo: unassignedbugs at nondot.org ReportedBy: xerxes at zafena.se CC: llvmbugs at cs.uiuc.edu Running LLVM built on Ubuntu Lucid thumb-unknown-linux-gnueabi host. xerxes at babbage-lucid:/wd/llvm-configure/test/ExecutionEngine/Output$ lli -mtriple=thumb -debug hello.ll.tmp.bc ... JITTing function 'main' JIT: Starting CodeGen of Function main JIT: Emitting BB0 at [0x40294010] JIT: 0x40294010: tPUSH pred:14, pred:%reg0, %reg0, %R7, %LR, %SP, %SP Unhandled instruction encoding format! UNREACHABLE executed at /wd/llvm/lib/Target/ARM/ARMCodeEmitter.cpp:313 Stack dump: 0. Program arguments: lli hello.ll.tmp.bc 1. Running pass 'ARM Machine Code Emitter' on function '@main' Aborted (core dumped) xerxes at babbage-lucid:/wd/llvm-configure/test/ExecutionEngine/Output$ lli -version Low Level Virtual Machine (http://llvm.org/): llvm version 2.7svn Optimized build with assertions. Built Feb 3 2010 (10:13:03). Host: thumb-unknown-linux-gnueabi Host CPU: (unknown) Registered Targets: arm - ARM thumb - Thumb -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Wed Feb 3 16:20:49 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Wed, 3 Feb 2010 16:20:49 -0600 Subject: [LLVMbugs] [Bug 6224] New: The x86 Disassembler (edis) is built even if x86 target is not selected -> build fails Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6224 Summary: The x86 Disassembler (edis) is built even if x86 target is not selected -> build fails Product: tools Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: llvmc AssignedTo: unassignedbugs at nondot.org ReportedBy: zapster at zapster.cc CC: llvmbugs at cs.uiuc.edu The x86 disassembler is built if x86 target is not enabled. Edis should be disabled if the x86 target is not selected. build steps: $ ../llvm/configure --disable-optimized --enable-targets=pic16 ; make -j2 ... llvm[3]: Linking Debug executable llvmc /home/zapster/test/llvm/tools/edis/EDDisassembler.cpp:56: error: ???instInfoX86??? was not declared in this scope /home/zapster/test/llvm/tools/edis/EDDisassembler.cpp:57: error: ???instInfoX86??? was not declared in this scope /home/zapster/test/llvm/tools/edis/EDDisassembler.cpp:59: error: too many initializers for ???InfoMap??? /home/zapster/test/llvm/tools/edis/EDDisassembler.cpp:59: error: too many initializers for ???InfoMap??? /home/zapster/test/llvm/tools/edis/EDDisassembler.cpp: In static member function ???static void EDDisassembler::initialize()???: /home/zapster/test/llvm/tools/edis/EDDisassembler.cpp:114: error: ???LLVMInitializeX86TargetInfo??? was not declared in this scope /home/zapster/test/llvm/tools/edis/EDDisassembler.cpp:114: error: ???LLVMInitializeX86Target??? was not declared in this scope /home/zapster/test/llvm/tools/edis/EDDisassembler.cpp:114: error: ???LLVMInitializeX86AsmPrinter??? was not declared in this scope /home/zapster/test/llvm/tools/edis/EDDisassembler.cpp:114: error: ???LLVMInitializeX86AsmParser??? was not declared in this scope /home/zapster/test/llvm/tools/edis/EDDisassembler.cpp:114: error: ???LLVMInitializeX86Disassembler??? was not declared in this scope make[2]: *** [/home/zapster/test/build/tools/edis/Debug/EDDisassembler.o] Error 1 make[2]: Leaving directory `/home/zapster/test/build/tools/edis' make[1]: *** [edis/.makeall] Error 2 ... -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Wed Feb 3 17:51:55 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Wed, 3 Feb 2010 17:51:55 -0600 Subject: [LLVMbugs] [Bug 6225] New: stack corruption with tail recursive calls Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6225 Summary: stack corruption with tail recursive calls Product: new-bugs Version: 2.6 Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: amanous at softlab.ntua.gr CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4170) --> (http://llvm.org/bugs/attachment.cgi?id=4170) llvm program producing the bug I have been using LLVM for quite some time now, for production of native binaries for a compiler I am developing. The compiler works with continuations, so I rely heavily on tail recursion (all my calls are "fastcc tail", the stack never grows). Lately I encountered a strange behavior. A binary produced by my compiler finished computation and THEN segfaulted. The first thing that came to mind was corruption of the return address, and after debugging with gdb it proved I was correct. After a lot of investigation of my entire compiler I traced the problem to the llvm conversion. During a branching call, the llvm corrupted the return address to the operating system, e.g. the contents of the location pointed by the stack pointer when the program starts. Attached is the smallest piece of code I could create that reproduces the bug. I compile with : llvm-as -f test.ll llc -tailcallopt -asm-verbose -march x86 -f test.bc gcc -g -Wall -m32 -c test.s gcc -g -m32 -o test test.o the binary "test" segfaults. The interesting code fragment is: ---------------- define fastcc void @l186(%tupl_p %r1) noreturn nounwind { entry: ... br i1 %cond, label %true, label %false true: tail call fastcc void @l297(i32 %r10, i32 %r9, i32 %r8, i32 %r7, i32 %r6, i32 %r5, i32 %r3, i32 %r2) noreturn nounwind ret void false: tail call fastcc void @l298(i32 %r10, i32 %r9, i32 %r4) noreturn nounwind ret void } ---------------- Which gets translated to: ---------------- l186: .LBB1_0: subl $24, %esp pushl %ebp pushl %ebx pushl %edi pushl %esi subl $36, %esp .... .LBB1_1: # %true ... movl %ecx, 76(%esp) ... ---------------- The "movl %ecx, 76(%esp)" instruction overwrites the return address of the program irreversibly. When the computation finishes, it will jump to this address, causing a segmentation fault. I tried the same program with the trunk version (a few days ago) and I get the same assembly translation (and segfault of course). -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Wed Feb 3 21:14:23 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Wed, 3 Feb 2010 21:14:23 -0600 Subject: [LLVMbugs] [Bug 6227] New: can't build LLVM in debug mode on Ubuntu 9.10 on x86 Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6227 Summary: can't build LLVM in debug mode on Ubuntu 9.10 on x86 Product: new-bugs Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: regehr at cs.utah.edu CC: llvmbugs at cs.uiuc.edu Argh, the message below is pretty verbose... ring bells for anyone? In release mode the compiler builds fine and works fine. llvm[2]: Building Debug Bytecode Archive libprofile_rt.bca (internalize) /home/regehr/z/tmp/llvm-r95278/Debug/bin/llvm-ld -L/home/regehr/z/tmp/llvm-gcc-r95275-install/lib -internalize-public-api-file=/home/regehr/z/tmp/llvm-r95278/runtime/libprofile/exported_symbols.lst -o /home/regehr/z/tmp/llvm-r95278/runtime/libprofile/Debug/profile_rt.internalize /home/regehr/z/tmp/llvm-r95278/runtime/libprofile/Debug/BasicBlockTracing.bc /home/regehr/z/tmp/llvm-r95278/runtime/libprofile/Debug/CommonProfiling.bc /home/regehr/z/tmp/llvm-r95278/runtime/libprofile/Debug/EdgeProfiling.bc /home/regehr/z/tmp/llvm-r95278/runtime/libprofile/Debug/OptimalEdgeProfiling.bc LinkModules ValueMap: Fr: 0x8ed1338 i32* null To: 0x8ed1338 i32* null Fr: 0x8ed4d14 @ArrayCursor = internal global i32* null ; [#uses=1] To: 0x8ed6514 @ArrayCursor = internal global i32* null ; [#uses=5] Fr: 0x8ed6294 @ArrayStart = internal global i32* null ; [#uses=1] To: 0x8ed2d8c @ArrayStart = internal global i32* null ; [#uses=4] Fr: 0x8ed62dc @ArrayEnd = internal global i32* null ; [#uses=1] To: 0x8ed2df4 @ArrayEnd = internal global i32* null ; [#uses=1] Fr: 0x8ed6340 declare void @write_profiling_data(i32, i32*, i32) To: 0x8ed2e50 declare void @write_profiling_data(i32, i32*, i32) Fr: 0x8ed6390 declare internal void @BBTraceAtExitHandler() nounwind To: 0x8edb8a0 define internal void @BBTraceAtExitHandler() nounwind { entry: %0 = load i32** @ArrayCursor, align 4, !dbg !6 ; [#uses=1] %1 = ptrtoint i32* %0 to i32, !dbg !6 ; [#uses=1] %2 = load i32** @ArrayStart, align 4, !dbg !6 ; [#uses=2] %3 = ptrtoint i32* %2 to i32, !dbg !6 ; [#uses=1] %4 = sub nsw i32 %1, %3, !dbg !6 ; [#uses=1] %5 = ashr i32 %4, 2 ; [#uses=1] tail call void @write_profiling_data(i32 6, i32* %2, i32 %5) nounwind, !dbg !6 %6 = load i32** @ArrayStart, align 4, !dbg !14 ; [#uses=2] store i32* %6, i32** @ArrayCursor, align 4, !dbg !14 %7 = bitcast i32* %6 to i8*, !dbg !15 ; [#uses=1] tail call void @free(i8* %7) nounwind, !dbg !15 ret void, !dbg !16 } Fr: 0x8ed63e0 declare i32 @save_arguments(i32, i8**) To: 0x8ed2938 declare i32 @save_arguments(i32, i8**) Fr: 0x8ed6448 declare void @free(i8* nocapture) nounwind To: 0x8edb820 declare void @free(i8* nocapture) nounwind Fr: 0x8ed6498 declare void @llvm_trace_basic_block(i32) nounwind To: 0x8edb720 define void @llvm_trace_basic_block(i32 %BBNum) nounwind { entry: %0 = load i32** @ArrayCursor, align 4, !dbg !6 ; [#uses=2] store i32 %BBNum, i32* %0, align 4, !dbg !6 %1 = getelementptr inbounds i32* %0, i32 1, !dbg !6 ; [#uses=3] store i32* %1, i32** @ArrayCursor, align 4, !dbg !6 %2 = load i32** @ArrayEnd, align 4, !dbg !11 ; [#uses=1] %3 = icmp eq i32* %1, %2, !dbg !11 ; [#uses=1] br i1 %3, label %bb, label %return, !dbg !11 bb: ; preds = %entry %4 = ptrtoint i32* %1 to i32, !dbg !12 ; [#uses=1] %5 = load i32** @ArrayStart, align 4, !dbg !12 ; [#uses=2] %6 = ptrtoint i32* %5 to i32, !dbg !12 ; [#uses=1] %7 = sub nsw i32 %4, %6, !dbg !12 ; [#uses=1] %8 = ashr i32 %7, 2 ; [#uses=1] tail call void @write_profiling_data(i32 6, i32* %5, i32 %8) nounwind, !dbg !12 %9 = load i32** @ArrayStart, align 4, !dbg !18 ; [#uses=1] store i32* %9, i32** @ArrayCursor, align 4, !dbg !18 ret void, !dbg !19 return: ; preds = %entry ret void, !dbg !19 } Fr: 0x8ed6578 declare i32 @llvm_start_basic_block_tracing(i32, i8**, i32* nocapture, i32) nounwind To: 0x8ed4e20 define i32 @llvm_start_basic_block_tracing(i32 %argc, i8** %argv, i32* nocapture %arrayStart, i32 %numElements) nounwind { entry: tail call void @llvm.dbg.value(metadata !6, i64 0, metadata !7), !dbg !18 %0 = tail call i32 @save_arguments(i32 %argc, i8** %argv) nounwind, !dbg !19 ; [#uses=1] tail call void @llvm.dbg.value(metadata , i64 0, metadata !20), !dbg !19 tail call void @llvm.dbg.value(metadata , i64 0, metadata !21), !dbg !22 %1 = tail call noalias i8* @malloc(i32 131072) nounwind, !dbg !23 ; [#uses=2] %2 = bitcast i8* %1 to i32*, !dbg !23 ; [#uses=2] store i32* %2, i32** @ArrayStart, align 4, !dbg !23 %3 = getelementptr inbounds i8* %1, i32 131072 ; [#uses=1] %4 = bitcast i8* %3 to i32* ; [#uses=1] store i32* %4, i32** @ArrayEnd, align 4, !dbg !24 store i32* %2, i32** @ArrayCursor, align 4, !dbg !25 %5 = tail call i32 @atexit(void ()* @BBTraceAtExitHandler) nounwind, !dbg !26 ; [#uses=0] ret i32 %0, !dbg !27 } Fr: 0x8ed66d0 declare noalias i8* @malloc(i32) nounwind To: 0x8ed2368 declare noalias i8* @malloc(i32) nounwind Fr: 0x8ed6740 declare i32 @atexit(void ()*) nounwind To: 0x8ed3010 declare i32 @atexit(void ()*) nounwind Fr: 0x8ed67b0 declare void @llvm.dbg.value(metadata, i64, metadata) nounwind readnone To: 0x8ed2850 declare void @llvm.dbg.value(metadata, i64, metadata) nounwind readnone Fr: 0x8ed76b8 !{i32 131072} To: 0x8ed76b8 !{i32 131072} Fr: 0x8eda3b8 !{i32 459008, metadata !-1, metadata !"BufferSize", metadata !-1, i32 52, metadata !-1} ; [ DW_TAG_auto_variable ] To: 0x8eda3b8 !{i32 459008, metadata !-1, metadata !"BufferSize", metadata !-1, i32 52, metadata !-1} ; [ DW_TAG_auto_variable ] Fr: 0x8edb5f0 i32 %argc To: 0x8eda078 i32 %argc Fr: 0x8edb618 i8** %argv To: 0x8eda0a0 i8** %argv Fr: 0x8edb640 i32* %arrayStart To: 0x8eda0c8 i32* %arrayStart Fr: 0x8edb668 i32 %numElements To: 0x8eda0f0 i32 %numElements Couldn't remap value: 0x8edb6c0 metadata Couldn't remap value! UNREACHABLE executed at LinkModules.cpp:419! 0 llvm-ld 0x0865bcae 1 llvm-ld 0x0865bb23 2 0x4001d400 __kernel_sigreturn + 0 3 libc.so.6 0x401cb932 abort + 386 4 llvm-ld 0x0863c938 llvm::FoldingSetNodeID::AddPointer(void const*) + 0 5 llvm-ld 0x08345de2 6 llvm-ld 0x08348ba4 7 llvm-ld 0x08348d6c 8 llvm-ld 0x08349dd6 llvm::Linker::LinkModules(llvm::Module*, llvm::Module*, std::string*) + 1844 9 llvm-ld 0x08344174 llvm::Linker::LinkInModule(llvm::Module*, std::string*) + 46 10 llvm-ld 0x08343f39 llvm::Linker::LinkInFile(llvm::sys::Path const&, bool&) + 1355 11 llvm-ld 0x08343423 llvm::Linker::LinkInItems(std::vector, std::allocator > > const&, std::vector, std::allocator > >&) + 295 12 llvm-ld 0x083167af main + 1142 13 libc.so.6 0x401b4b56 __libc_start_main + 230 14 llvm-ld 0x0830f061 Stack dump: 0. Program arguments: /home/regehr/z/tmp/llvm-r95278/Debug/bin/llvm-ld -L/home/regehr/z/tmp/llvm-gcc-r95275-install/lib -internalize-public-api-file=/home/regehr/z/tmp/llvm-r95278/runtime/libprofile/exported_symbols.lst -o /home/regehr/z/tmp/llvm-r95278/runtime/libprofile/Debug/profile_rt.internalize /home/regehr/z/tmp/llvm-r95278/runtime/libprofile/Debug/BasicBlockTracing.bc /home/regehr/z/tmp/llvm-r95278/runtime/libprofile/Debug/CommonProfiling.bc /home/regehr/z/tmp/llvm-r95278/runtime/libprofile/Debug/EdgeProfiling.bc /home/regehr/z/tmp/llvm-r95278/runtime/libprofile/Debug/OptimalEdgeProfiling.bc make[2]: *** [/home/regehr/z/tmp/llvm-r95278/Debug/lib/libprofile_rt.bca] Aborted make[2]: Leaving directory `/home/regehr/z/tmp/llvm-r95278/runtime/libprofile' make[1]: *** [libprofile/.makeall] Error 2 make[1]: Leaving directory `/home/regehr/z/tmp/llvm-r95278/runtime' make: *** [all] Error 1 -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Thu Feb 4 00:07:50 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Thu, 4 Feb 2010 00:07:50 -0600 Subject: [LLVMbugs] [Bug 6228] New: ASCII NUL bytes in output of `llvm-ar t` Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6228 Summary: ASCII NUL bytes in output of `llvm-ar t` Product: new-bugs Version: trunk Platform: All OS/Version: All Status: NEW Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: abbeyj at gmail.com CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4171) --> (http://llvm.org/bugs/attachment.cgi?id=4171) Remove NUL padding bytes when reading archive Running `llvm-ar t` on certain archives will produce ASCII NUL bytes in the output. These are normally invisible but they don't belong there and are causing test/Archive/toc_MacOSX.ll to fail on Windows. When diff sees two "binary" files that have different line endings it reports them as different and the test fails. The MacOSX.a archive has the names NUL padded up to (I believe) 8 byte boundaries. These NULs need to be trimmed off on reading. STR: $ llvm-ar t test/Archive/MacOSX.a | od -c Expected output: 0000000 _ _ . S Y M D E F S O R T E D 0000020 \r \n e v e n l e n \r \n o d d l e 0000040 n \r \n v e r y _ l o n g _ b y t 0000060 e c o d e _ f i l e _ n a m e . 0000100 b c \r \n I s N A N . o \r \n 0000115 (possibly with different platform-appropriate line endings) Actual output: 0000000 _ _ . S Y M D E F S O R T E D 0000020 \0 \0 \0 \0 \r \n e v e n l e n \0 \0 \0 0000040 \0 \0 \r \n o d d l e n \0 \0 \0 \0 \0 \0 0000060 \r \n v e r y _ l o n g _ b y t e 0000100 c o d e _ f i l e _ n a m e . b 0000120 c \0 \0 \0 \0 \0 \r \n I s N A N . o \0 0000140 \0 \0 \0 \0 \r \n 0000146 Attached patch removes the extra NUL bytes from the output and changes test/Archive/MacOSX.toc from a binary to a text file (removes svn:mime-type=application/octet-stream and adds svn:eol-style=native). I can't figure out how to get SVN to include the new contents of the file in the patch so I'm attaching it separately. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Thu Feb 4 00:20:09 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Thu, 4 Feb 2010 00:20:09 -0600 Subject: [LLVMbugs] [Bug 6228] ASCII NUL bytes in output of `llvm-ar t` In-Reply-To: Message-ID: <201002040620.o146K9hM020166@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6228 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #2 from Chris Lattner 2010-02-04 00:20:08 --- Thanks, applied: http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20100201/095633.html -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Thu Feb 4 00:24:34 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Thu, 4 Feb 2010 00:24:34 -0600 Subject: [LLVMbugs] [Bug 6222] Assert "getTerminator returned null" for a verified function In-Reply-To: Message-ID: <201002040624.o146OYvF020394@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6222 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID --- Comment #3 from Chris Lattner 2010-02-04 00:24:33 --- It sounds like you're using the API wrong. Using the jit in non-lazy mode will cause it to compile functions and those functions need to be self consistent. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Thu Feb 4 01:32:28 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Thu, 4 Feb 2010 01:32:28 -0600 Subject: [LLVMbugs] [Bug 6214] scalar absolute value of single precision floating point values In-Reply-To: Message-ID: <201002040732.o147WSB8023201@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6214 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |LATER --- Comment #2 from Chris Lattner 2010-02-04 01:32:28 --- I moved the microoptzn into the SSE ideas file: http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20100201/095640.html -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Thu Feb 4 01:34:08 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Thu, 4 Feb 2010 01:34:08 -0600 Subject: [LLVMbugs] [Bug 6229] New: Irrelevant/ incorrect preprocessor defines present under -std=c89 Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6229 Summary: Irrelevant/incorrect preprocessor defines present under -std=c89 Product: new-bugs Version: trunk Platform: Macintosh OS/Version: MacOS X Status: NEW Severity: minor Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: llvm.org at elliottcable.com CC: llvmbugs at cs.uiuc.edu I???m not sure if this is intended or not, but it seems weird: when compiling source with `clang -std=c89`, things like `LLONG_MIN` and `ULLONG_MAX`, that apply to features not available under `-std=c89`, are still defined. This lead to the situation in my code, where my `#if` passed (because `LLONG_MIN` and such are defined), but the code was un-compile-able under `-std=c89`, because it depended on the availability of `long long` when `LLONG_MIN` was defined. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Thu Feb 4 10:10:25 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Thu, 4 Feb 2010 10:10:25 -0600 Subject: [LLVMbugs] [Bug 6218] Broken debug info for almost every c++ app In-Reply-To: Message-ID: <201002041610.o14GAPeD026838@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6218 Anton Korobeynikov changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID --- Comment #1 from Anton Korobeynikov 2010-02-04 10:10:24 --- This turned out to be a binutils bug. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Thu Feb 4 11:36:14 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Thu, 4 Feb 2010 11:36:14 -0600 Subject: [LLVMbugs] [Bug 6230] New: Instruction combiner pass broken for Vectors over 32 elements Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6230 Summary: Instruction combiner pass broken for Vectors over 32 elements Product: libraries Version: trunk Platform: All OS/Version: All Status: NEW Severity: normal Priority: P2 Component: Transformation Utilities AssignedTo: unassignedbugs at nondot.org ReportedBy: ddneff at hotmail.com CC: llvmbugs at cs.uiuc.edu The instruction combiner is not creating demanded element bit masks correctly when indexing into large vectors. It is shifting 1 left by the index, and when the index is larger than an integer, the mask is not correct. =========================== InstCombineVectorOps.cpp contains these two lines inside of InstCombiner::visitExtractElementInst: APInt DemandedMask(VectorWidth, 1 << IndexVal); if (Value *V = SimplifyDemandedVectorElts(EI.getOperand(0), DemandedMask, UndefElts)) { ... Shifting 1 left by IndexVal will overflow a 32 bit integer whenever IndexVal is greater than 31. I believe the correct code should use the APInt to set the mask along the lines of: APInt DemandMask(VectorWidth, 0); DemandMask.set(IndexVal); if (Value *V = SimplifyDemandedVectorElts(EI.getOperand(0), DemandedMask, UndefElts)) { =============================== A similar problem exists in file InstCombineSimplifyDemanded.cpp in InstCombiner::SimplifyDemandedVectorElts: if (DemandedElts == ((1ULL << VWidth) -1)) return 0; This at least works until 64 element vectors, but I believe it should be something like: if (DemandedElts == APInt(VWidth, 0).set()) return 0; -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Thu Feb 4 12:47:41 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Thu, 4 Feb 2010 12:47:41 -0600 Subject: [LLVMbugs] [Bug 6086] assertion failure in LiveIntervals In-Reply-To: Message-ID: <201002041847.o14IlfK6001971@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6086 Jakob Stoklund Olesen changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #2 from Jakob Stoklund Olesen 2010-02-04 12:47:40 --- Fixed in r95319 -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Thu Feb 4 21:00:16 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Thu, 4 Feb 2010 21:00:16 -0600 Subject: [LLVMbugs] [Bug 6235] New: Alpha Backend fails to compile with internal compiler error . Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6235 Summary: Alpha Backend fails to compile with internal compiler error. Product: libraries Version: 2.6 Platform: DEC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: Backend: Alpha AssignedTo: alenhar2 at uiuc.edu ReportedBy: mattst88 at gmail.com CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4175) --> (http://llvm.org/bugs/attachment.cgi?id=4175) LLVM-gcc frontend compile failure log -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Fri Feb 5 02:34:44 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Fri, 5 Feb 2010 02:34:44 -0600 Subject: [LLVMbugs] [Bug 6240] New: clang++ miscompiles MemCpyOptimizer.o in Release mode Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6240 Summary: clang++ miscompiles MemCpyOptimizer.o in Release mode Product: clang Version: unspecified Platform: PC OS/Version: All Status: NEW Severity: normal Priority: P2 Component: LLVM Codegen AssignedTo: unassignedclangbugs at nondot.org ReportedBy: daniel at zuster.org CC: clattner at apple.com, llvmbugs at cs.uiuc.edu, dgregor at apple.com When clang++ is used to build a Release clang++, MemCpyOptimizer appears to be miscompiled (based on test failures). If MemCpyOptimizer is compiled at O0 with clang++, then test/Transforms/MemCpyOpt/align.ll passes. This is most likely an IRgen error where we are relying somehow on undefined behavior. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Fri Feb 5 03:31:38 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Fri, 5 Feb 2010 03:31:38 -0600 Subject: [LLVMbugs] [Bug 6243] New: C2440 "reinterpret_cast": cant convert enum to unsigned int Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6243 Summary: C2440 "reinterpret_cast": cant convert enum to unsigned int Product: libraries Version: trunk Platform: PC OS/Version: Windows XP Status: NEW Keywords: compile-fail Severity: normal Priority: P2 Component: Support Libraries AssignedTo: unassignedbugs at nondot.org ReportedBy: etherzhhb at gmail.com CC: llvmbugs at cs.uiuc.edu hi all, i am write to report the "bits_storage" of commandline library not work on msvc and cygwin. i am writing the code like this: enum PrintStyle { AnalOnly, PostOder, HierNode, NameOnly }; cl::bits printStyle("print-region-style", cl::Hidden, cl::desc("print style of printing out regions"), cl::values( clEnumValN(AnalOnly, "analyze-only", "only print region on analyze"), clEnumValN(PostOder, "postoder", "print RegionNodes in post order"), clEnumValN(HierNode, "hier-node", "print RegionNodes with hierachical iterator"), clEnumValN(NameOnly, "name-only", "only print the region name"), clEnumValEnd)); and some place have the code like printStyle.isSet(NameOnly) then it get a compile error when i compile it with msvc: error C2440: ???reinterpret_cast???: cant convert ???const llvm::PrintStyle??? to ???unsigned int??? F:\cygwin\home\ether\polyllvm\pofl\include\llvm\Support\CommandLine.h 1171 and it also cant compile under cygwin: llvm[0]: Compiling RegionPrinter.cpp for Debug build /home/ether/polyllvm/pofl/include/llvm/Support/CommandLine.h: In static member function ???static unsigned int llvm::cl::bits_storage::Bit(const T&) [with T = llvm::PrintStyle, DataType = llvm::PrintStyle]???: /home/ether/polyllvm/pofl/include/llvm/Support/CommandLine.h:1187: instantiated from ???bool llvm::cl::bits_storage::isSet(const T&) [with T = llvm::PrintStyle, DataType = llvm::PrintStyle]??? /home/ether/polyllvm/pofl/lib/Analysis/Region/RegionPrinter.cpp:83: instantiated from here /home/ether/polyllvm/pofl/include/llvm/Support/CommandLine.h:1171: error: invalid cast from type ???llvm::PrintStyle??? to type ???unsigned int??? make: *** [/home/ether/polyllvm/build/lib/Analysis/Region/Debug/RegionPrinter.o] Error 1 my gcc version is: gcc version 4.3.4 20090804 (release) 1 (GCC) ------------------------------------------------------------------------------------------------------------------------------------------------------------------- and if i use (unsigned) instead of reinterpret_cast, it work. --best regards ether -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Fri Feb 5 10:37:59 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Fri, 5 Feb 2010 10:37:59 -0600 Subject: [LLVMbugs] [Bug 6185] llvm-gcc assumes no alignment for bitfield loads In-Reply-To: Message-ID: <201002051637.o15GbxRI025469@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6185 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |DUPLICATE --- Comment #5 from Chris Lattner 2010-02-05 10:37:58 --- This is the same as Bug 5995. llvm-gcc is lowering accesses to be align 1 when llvm-types lowers the structure to an llvm packed struct. Whether or not it turns into an llvm packed struct should have nothing to do with the alignment of the load. This is terrible code and needs to be ripped out. *** This bug has been marked as a duplicate of bug 5995 *** -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Fri Feb 5 13:46:18 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Fri, 5 Feb 2010 13:46:18 -0600 Subject: [LLVMbugs] [Bug 6246] New: Semi-automatic vectorization when performing scalar operations on vector elements Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6246 Summary: Semi-automatic vectorization when performing scalar operations on vector elements Product: libraries Version: 2.6 Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: Scalar Optimizations AssignedTo: unassignedbugs at nondot.org ReportedBy: llvm at henning-thielemann.de CC: llvmbugs at cs.uiuc.edu In my automatically generated code it often happens that scalar operations are applied to vector elements that could have been written as vector operations as well. E.g. (due to modularization issues) I generate code like define <4 x float> @_vadd(<4 x float>, <4 x float>) { %a0 = extractelement <4 x float> %0, i32 0 %b0 = extractelement <4 x float> %1, i32 0 %c0 = fadd float %a0, %b0 %a1 = extractelement <4 x float> %0, i32 1 %b1 = extractelement <4 x float> %1, i32 1 %c1 = fadd float %a1, %b1 %a2 = extractelement <4 x float> %0, i32 2 %b2 = extractelement <4 x float> %1, i32 2 %c2 = fadd float %a2, %b2 %a3 = extractelement <4 x float> %0, i32 3 %b3 = extractelement <4 x float> %1, i32 3 %c3 = fadd float %a3, %b3 %d0 = insertelement <4 x float> undef, float %c0, i32 0 %d1 = insertelement <4 x float> %d0, float %c1, i32 1 %d2 = insertelement <4 x float> %d1, float %c2, i32 2 %d3 = insertelement <4 x float> %d2, float %c3, i32 3 ret <4 x float> %d3 } I think it would be both correct and more efficient to swap 'fadd's and 'extractelements' by an optimization pass which would yield: define <4 x float> @_vadd(<4 x float>, <4 x float>) nounwind readnone { %c = fadd <4 x float> %0, %1 %c0 = extractelement <4 x float> %c, i32 0 %c1 = extractelement <4 x float> %c, i32 1 %c2 = extractelement <4 x float> %c, i32 2 %c3 = extractelement <4 x float> %c, i32 3 %d0 = insertelement <4 x float> undef, float %c0, i32 0 %d1 = insertelement <4 x float> %d0, float %c1, i32 1 %d2 = insertelement <4 x float> %d1, float %c2, i32 2 %d3 = insertelement <4 x float> %d2, float %c3, i32 3 ret <4 x float> %d3 } That the remaining extractelements and insertelements are the identity transform is already correctly detected both by the optimizer and the (X86) code generator. The optimizer transforms the last piece of code to something like: define <4 x float> @_vadd(<4 x float>, <4 x float>) nounwind readnone { %c = fadd <4 x float> %0, %1 ret <4 x float> %c } -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Sat Feb 6 06:46:53 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Sat, 6 Feb 2010 06:46:53 -0600 Subject: [LLVMbugs] [Bug 6251] New: Compiled with -O2 program crashes inside libstdc++ Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6251 Summary: Compiled with -O2 program crashes inside libstdc++ Product: clang Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: LLVM Codegen AssignedTo: unassignedclangbugs at nondot.org ReportedBy: sorokin at rain.ifmo.ru CC: llvmbugs at cs.uiuc.edu Blocks: 6023 The following program (see attachment) crashes when it is compiled with -O2. ivan at ivan-desktop:~/d/llvm-build/Debug/bin$ ./clang++ -ggdb 13.cpp ivan at ivan-desktop:~/d/llvm-build/Debug/bin$ ./a.out ivan at ivan-desktop:~/d/llvm-build/Debug/bin$ ./clang++ -O2 -ggdb 13.cpp ivan at ivan-desktop:~/d/llvm-build/Debug/bin$ gdb a.out (gdb) run Starting program: /home/ivan/d/llvm-build/Debug/bin/a.out Program received signal SIGSEGV, Segmentation fault. 0x00007ffff733f719 in free () from /lib/libc.so.6 (gdb) backtrace #0 0x00007ffff733f719 in free () from /lib/libc.so.6 #1 0x00007ffff7b3656f in std::ios_base::~ios_base() () from /usr/lib/libstdc++.so.6 #2 0x0000000000400eef in main () at 13.cpp:30 If I remove inheritance from fake_base or If I remove fake_member member or If I compile without -O2 the program doesn't crash. Ubuntu 9.10 x86-64. This bug occur when using boost::format. I continue my experiments to make more precise bug report. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Sat Feb 6 07:12:36 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Sat, 6 Feb 2010 07:12:36 -0600 Subject: [LLVMbugs] [Bug 6252] New: FP ASM crash with local register allocator Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6252 Summary: FP ASM crash with local register allocator Product: new-bugs Version: unspecified Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: baldrick at free.fr CC: llvmbugs at cs.uiuc.edu $ llc -regalloc=local fpcrash.ll llc: llvm/lib/Target/X86/X86FloatingPoint.cpp:1051: void::FPS::handleSpecialFP(llvm::ilist_iterator&): Assertion `(StackTop == 1 || StackTop == 2) && "Stack should have one or two element on it to return!"' failed. Testcase (reduced from GCC's 990413-2.c): target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64" target triple = "x86_64-unknown-linux-gnu" define void @f() nounwind { entry: %tmp = call x86_fp80 asm sideeffect "fpatan\0A\09", "={st},0,{st(1)},~{fpsr},~{flags},~{st(1)}"(x86_fp80 undef, x86_fp80 undef) nounwind ; [#uses=0] ret void } -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Sat Feb 6 11:08:24 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Sat, 6 Feb 2010 11:08:24 -0600 Subject: [LLVMbugs] [Bug 6253] New: SimpleRegisterCoalescer fails to update live-in information Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6253 Summary: SimpleRegisterCoalescer fails to update live-in information Product: libraries Version: trunk Platform: PC OS/Version: Linux Status: NEW Keywords: code-cleanup Severity: normal Priority: P2 Component: Common Code Generator Code AssignedTo: unassignedbugs at nondot.org ReportedBy: mwb.cde at googlemail.com CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4185) --> (http://llvm.org/bugs/attachment.cgi?id=4185) Make SimpleRegisterCoalescer print live-in information The register coalescer doesn't update variable live-in information when replacing virtual registers with physical registers. This means that live-in information after running SimpleRegisterCoalescer is not complete and can't be relied on. The effect is that register allocators used with SimpleRegisterCoalescer have to recalculate live-in information from the set of live intervals. This increases compile-time unnecessarily, since all physical registers have to be considered and not just those which were changed by the register coalescer. This is already done by RegAllocLinearScan as a side-effect of setting live-in values for virtual registers, so this is not a problem if the standard allocator is used. Test case: - Apply the attached patch to make SimpleRegisterCoalescer print the block live-in variables at the start and end of the register coalescer pass. - Run llc -debug -regalloc=linearscan -march=x86 on test/CodeGen/Generic/2003-05-27/usefsubasbool.l The coalescer replaces source reg1024 with xmm0 in instruction 36 (UCOMISDRRrr %reg1024, %reg1026, eflags) of block BB#1 (shortcirc_next.1), but xmm0 is defined in block BB#0 (entry) and xmm0 is not marked live into BB#1. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Sun Feb 7 00:40:48 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Sun, 7 Feb 2010 00:40:48 -0600 Subject: [LLVMbugs] [Bug 6255] New: llvm_unreachable assert in llc Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6255 Summary: llvm_unreachable assert in llc Product: new-bugs Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: viridia at gmail.com CC: llvmbugs at cs.uiuc.edu I've been getting an error in llc lately: FIXME: Don't support this constant cast expr UNREACHABLE executed at /home/talin/Projects/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp:898! This started happening about two weeks ago for me (I update to the trunk revision on a fairly regular basis.) Attached is an input file which can reproduce the error with the following command: llc StringReaderTest.opt.bc Note that this input file was produced by opt, which did not report any complaints. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Sun Feb 7 09:07:12 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Sun, 7 Feb 2010 09:07:12 -0600 Subject: [LLVMbugs] [Bug 6258] New: Invalid module generated Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6258 Summary: Invalid module generated Product: clang Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: LLVM Codegen AssignedTo: unassignedclangbugs at nondot.org ReportedBy: asl at math.spbu.ru CC: llvmbugs at cs.uiuc.edu Blocks: 5881 Consider the attached sources I have: $ ./clang qdesigner_propertycommand.ii Attributes after last parameter! void (i1)* @_ZN5QFont12setUnderlineEb Attributes after last parameter! void (i1)* @_ZN5QFont12setStrikeOutEb Attributes after last parameter! void (i1)* @_ZN5QFont10setKerningEb Broken module found, compilation aborted! both original & reduces sources are provided. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Sun Feb 7 11:37:31 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Sun, 7 Feb 2010 11:37:31 -0600 Subject: [LLVMbugs] [Bug 6258] Invalid module generated In-Reply-To: Message-ID: <201002071737.o17HbVSX009623@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6258 Anders Carlsson changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |andersca at mac.com Status|NEW |RESOLVED Resolution| |FIXED --- Comment #3 from Anders Carlsson 2010-02-07 11:37:30 --- Committed revision 95524. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Sun Feb 7 12:00:18 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Sun, 7 Feb 2010 12:00:18 -0600 Subject: [LLVMbugs] [Bug 6259] New: Assertion in Sema Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6259 Summary: Assertion in Sema Product: clang Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: Semantic Analyzer AssignedTo: unassignedclangbugs at nondot.org ReportedBy: asl at math.spbu.ru CC: llvmbugs at cs.uiuc.edu Blocks: 5881 Consider the preprocessed sources attached. I am seeing: $ ./clang++ qdbusmetatype.ii clang: /home/asl/proj/llvm/src/tools/clang/lib/Sema/../../include/clang/AST/DeclCXX.h:300: clang::CXXRecordDecl::DefinitionData& clang::CXXRecordDecl::data(): Assertion `DefinitionData && "queried property of class with no definition"' failed. Both original and reduces sources attached. Reduced one looks pretty bigus, but triggers the same assertion though. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Sun Feb 7 13:45:12 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Sun, 7 Feb 2010 13:45:12 -0600 Subject: [LLVMbugs] [Bug 6260] New: llc crash - assertion " Ran out of registers during register allocation!" Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6260 Summary: llc crash - assertion "Ran out of registers during register allocation!" Product: new-bugs Version: trunk Platform: PC OS/Version: All Status: NEW Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: ddunkle at arxan.com CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4200) --> (http://llvm.org/bugs/attachment.cgi?id=4200) simplified bugpoint "bc" file We are using this version of llc: Low Level Virtual Machine (http://llvm.org/): llvm version 2.7svn Optimized build with assertions. Built Feb 4 2010 (14:30:07). Host: i386-apple-darwin9 Host CPU: penryn We use llc in this fashion: llc -O0 bugpoint-reduced-simplified.bc If the -O0 is removed, or -O3 is specified, or if -regalloc=local is specified the assertion goes away and llc completes. So it seems specific to -O0. It is necessary for us to use -O0 for product purposes. I will attach the simplified bugpoint output. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 8 10:15:49 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 8 Feb 2010 10:15:49 -0600 Subject: [LLVMbugs] [Bug 3255] Investigate deterministic variations due to "unintended" changes . In-Reply-To: Message-ID: <201002081615.o18GFnsm025418@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=3255 Daniel Dunbar changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |LATER --- Comment #18 from Daniel Dunbar 2010-02-08 10:15:49 --- Closing this out, when I start performance testing Clang I have ways to quantify these problems. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 8 11:59:31 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 8 Feb 2010 11:59:31 -0600 Subject: [LLVMbugs] [Bug 3327] ia64 target problems with ELF sections In-Reply-To: Message-ID: <201002081759.o18HxVA8030770@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=3327 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |WONTFIX --- Comment #1 from Chris Lattner 2010-02-08 11:59:31 --- The IA64 backend got removed. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 8 12:34:21 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 8 Feb 2010 12:34:21 -0600 Subject: [LLVMbugs] [Bug 6252] FP ASM crash with local register allocator In-Reply-To: Message-ID: <201002081834.o18IYLep032615@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6252 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |DUPLICATE --- Comment #1 from Chris Lattner 2010-02-08 12:34:20 --- We don't have solid support for those constraints. *** This bug has been marked as a duplicate of bug 879 *** -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 8 13:28:21 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 8 Feb 2010 13:28:21 -0600 Subject: [LLVMbugs] [Bug 6259] Assertion in Sema while generating diagnostics on invalid input In-Reply-To: Message-ID: <201002081928.o18JSLkp002653@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6259 John McCall changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |rjmccall at apple.com Status|NEW |RESOLVED Resolution| |FIXED --- Comment #5 from John McCall 2010-02-08 13:28:20 --- Crash-on-invalid is fixed in r95554. Confirmed that unreduced test case fixed by resolution of related bug. Our work here is done. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 8 15:47:10 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 8 Feb 2010 15:47:10 -0600 Subject: [LLVMbugs] [Bug 5585] Global variables that are references and have constant initializers should be marked constant In-Reply-To: Message-ID: <201002082147.o18LlAV6009596@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=5585 John McCall changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |rjmccall at apple.com Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from John McCall 2010-02-08 15:47:09 --- Fixed in r95577. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 8 16:06:10 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 8 Feb 2010 16:06:10 -0600 Subject: [LLVMbugs] [Bug 6255] llvm_unreachable assert in llc In-Reply-To: Message-ID: <201002082206.o18M6ARa010554@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6255 Dan Gohman changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #2 from Dan Gohman 2010-02-08 16:06:10 --- The new sizeof folding code was producing constant expressions of kinds that the asm printer wasn't prepared to handle. This is fixed in r95583. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 8 17:10:15 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 8 Feb 2010 17:10:15 -0600 Subject: [LLVMbugs] [Bug 5308] LLVM IRgen should not defer static data with non-constant initializations (in C++) In-Reply-To: Message-ID: <201002082310.o18NAFJ9013871@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=5308 John McCall changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |rjmccall at apple.com Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from John McCall 2010-02-08 17:10:14 --- Fixed at some point. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 8 17:56:18 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 8 Feb 2010 17:56:18 -0600 Subject: [LLVMbugs] [Bug 6230] Instruction combiner pass broken for Vectors over 32 elements In-Reply-To: Message-ID: <201002082356.o18NuIPv015894@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6230 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Chris Lattner 2010-02-08 17:56:18 --- Thanks, fixed here: http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20100208/095820.html -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 8 18:06:00 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 8 Feb 2010 18:06:00 -0600 Subject: [LLVMbugs] [Bug 6243] C2440 "reinterpret_cast": cant convert enum to unsigned int In-Reply-To: Message-ID: <201002090006.o19060Ke016443@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6243 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Chris Lattner 2010-02-08 18:06:00 --- Fixed in r95622, thanks. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 8 18:07:23 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 8 Feb 2010 18:07:23 -0600 Subject: [LLVMbugs] [Bug 6229] Irrelevant/incorrect preprocessor defines present under -std=c89 In-Reply-To: Message-ID: <201002090007.o1907NaH016506@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6229 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID --- Comment #1 from Chris Lattner 2010-02-08 18:07:22 --- We support long long in c89 mode as an extension: $ clang t.c -std=c89 -c $ clang t.c -std=c89 -c -pedantic t.c:2:6: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long] long long x; ^ -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 8 18:11:39 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 8 Feb 2010 18:11:39 -0600 Subject: [LLVMbugs] [Bug 6212] Clang misses optimisation on if vs else if In-Reply-To: Message-ID: <201002090011.o190Bd8h016721@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6212 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |LATER --- Comment #1 from Chris Lattner 2010-02-08 18:11:38 --- Thanks, moved this microoptimization to the README file here: http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20100208/095824.html -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 8 19:07:52 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 8 Feb 2010 19:07:52 -0600 Subject: [LLVMbugs] [Bug 6209] Keep Results Into SIMD Registers In-Reply-To: Message-ID: <201002090107.o1917q07019213@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6209 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |REMIND --- Comment #2 from Chris Lattner 2010-02-08 19:07:51 --- Closing until we get a testcase, please reopen when/if you get one. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 8 19:30:34 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 8 Feb 2010 19:30:34 -0600 Subject: [LLVMbugs] [Bug 6193] crash in instcombine in MatchSelectFromAndOr In-Reply-To: Message-ID: <201002090130.o191UYYC020437@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6193 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Chris Lattner 2010-02-08 19:30:34 --- Fixed here, thanks! http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20100208/095840.html http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20100208/095841.html -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 8 19:40:05 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 8 Feb 2010 19:40:05 -0600 Subject: [LLVMbugs] [Bug 6167] Segmentation fault due to type mismatch for build_struct_gep in OCaml bindings In-Reply-To: Message-ID: <201002090140.o191e5ql021397@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6167 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Chris Lattner 2010-02-08 19:40:05 --- Applied, thanks: http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20100208/095842.html -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 8 23:34:17 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 8 Feb 2010 23:34:17 -0600 Subject: [LLVMbugs] [Bug 6227] linker metadata issue In-Reply-To: Message-ID: <201002090534.o195YHuT001821@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6227 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #4 from Chris Lattner 2010-02-08 23:34:17 --- assuming that victors patch fixed this, please reopen if not. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 8 23:50:43 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 8 Feb 2010 23:50:43 -0600 Subject: [LLVMbugs] [Bug 2515] execution of scanf functions broken in lli In-Reply-To: Message-ID: <201002090550.o195oh0f002672@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=2515 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #2 from Chris Lattner 2010-02-08 23:50:43 --- ByteswapSCANFResults is gone. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 8 23:52:02 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 8 Feb 2010 23:52:02 -0600 Subject: [LLVMbugs] [Bug 2649] x86-64 execution crash. In-Reply-To: Message-ID: <201002090552.o195q2Gi002767@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=2649 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #5 from Chris Lattner 2010-02-08 23:52:02 --- This is probably fixed. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 8 23:52:55 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 8 Feb 2010 23:52:55 -0600 Subject: [LLVMbugs] [Bug 2786] incorrect branch code produced by code generator, under certain circumstances In-Reply-To: Message-ID: <201002090552.o195qtXO002838@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=2786 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID --- Comment #15 from Chris Lattner 2010-02-08 23:52:54 --- Undefined behavior is undefined. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 8 23:55:39 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 8 Feb 2010 23:55:39 -0600 Subject: [LLVMbugs] [Bug 3462] missing 128bit intrinsic on x86-64 In-Reply-To: Message-ID: <201002090555.o195tdw2003055@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=3462 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |LATER --- Comment #2 from Chris Lattner 2010-02-08 23:55:39 --- Moved out to the X86 unimplemented file here: http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20100208/095849.html -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 8 23:56:17 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 8 Feb 2010 23:56:17 -0600 Subject: [LLVMbugs] [Bug 3508] /SingleSource/UnitTests/Vector/divides cbe failure In-Reply-To: Message-ID: <201002090556.o195uHU6003104@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=3508 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |WONTFIX --- Comment #2 from Chris Lattner 2010-02-08 23:56:17 --- I don't think anyone cares enough to fix this anymore and CBE isn't considered release critical. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 8 23:57:53 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 8 Feb 2010 23:57:53 -0600 Subject: [LLVMbugs] [Bug 4279] Tail calls not used when possible without -tailcallopt In-Reply-To: Message-ID: <201002090557.o195vrjR003187@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=4279 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #3 from Chris Lattner 2010-02-08 23:57:53 --- Evan implemented this. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 8 23:59:41 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 8 Feb 2010 23:59:41 -0600 Subject: [LLVMbugs] [Bug 4410] incorrect expansion for uint_to_fp In-Reply-To: Message-ID: <201002090559.o195xfiv003285@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=4410 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |LATER --- Comment #2 from Chris Lattner 2010-02-08 23:59:40 --- LLVM's codegen only supports the default rounding mode currently. To expand on this, we'd want to extend the IR. I'm not aware of anyone interested in this though. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 9 00:00:59 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 9 Feb 2010 00:00:59 -0600 Subject: [LLVMbugs] [Bug 4598] clang: ICE on invalid C: pure virtual method called In-Reply-To: Message-ID: <201002090600.o1960xlY003373@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=4598 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |DUPLICATE --- Comment #2 from Chris Lattner 2010-02-09 00:00:58 --- Works on ToT. *** This bug has been marked as a duplicate of bug 3444 *** -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 9 00:03:36 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 9 Feb 2010 00:03:36 -0600 Subject: [LLVMbugs] [Bug 4629] quest test case generator finds possible bugs in clang and llvmc on x86-64 In-Reply-To: Message-ID: <201002090603.o1963aWO003599@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=4629 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #6 from Chris Lattner 2010-02-09 00:03:35 --- I spot checked a few of these and they seemed to work with ToT. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 9 00:04:49 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 9 Feb 2010 00:04:49 -0600 Subject: [LLVMbugs] [Bug 4706] Bitcode reader fails after rev# 78258 In-Reply-To: Message-ID: <201002090604.o1964nb8003679@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=4706 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution| |FIXED --- Comment #10 from Chris Lattner 2010-02-09 00:04:48 --- This has probably been fixed. If not, please reopen. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 9 00:05:42 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 9 Feb 2010 00:05:42 -0600 Subject: [LLVMbugs] [Bug 4883] x86 doesn't turn on tail recursion elimination by default In-Reply-To: Message-ID: <201002090605.o1965gd8003755@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=4883 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #2 from Chris Lattner 2010-02-09 00:05:42 --- Evan implemented tail call support that handles this. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 9 00:10:18 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 9 Feb 2010 00:10:18 -0600 Subject: [LLVMbugs] [Bug 5052] JIT crash using sequence 'load --> bswap --> bitcast --> fptoui' In-Reply-To: Message-ID: <201002090610.o196AIQD004070@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=5052 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID --- Comment #7 from Chris Lattner 2010-02-09 00:10:17 --- sounds like a build problem. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 9 00:13:38 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 9 Feb 2010 00:13:38 -0600 Subject: [LLVMbugs] [Bug 5268] clang: undefined behavior in message-length test: uninitialized variables, and out-of-bounds read In-Reply-To: Message-ID: <201002090613.o196Dcqt004279@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=5268 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #2 from Chris Lattner 2010-02-09 00:13:37 --- this valgrind's clean on mainline. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 9 00:41:18 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 9 Feb 2010 00:41:18 -0600 Subject: [LLVMbugs] [Bug 5624] test/CodeGen/Generic has target specific tests In-Reply-To: Message-ID: <201002090641.o196fIih005793@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=5624 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Chris Lattner 2010-02-09 00:41:17 --- Fixed in a series of patches leading up to r95656. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 9 01:46:51 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 9 Feb 2010 01:46:51 -0600 Subject: [LLVMbugs] [Bug 5107] Division by zero in SimpleRegisterCoalescing:: isWinToJoinCrossClass() In-Reply-To: Message-ID: <201002090746.o197kpfn009069@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=5107 Evan Cheng changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID --- Comment #2 from Evan Cheng 2010-02-09 01:46:50 --- No test case. Closing. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 9 02:29:19 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 9 Feb 2010 02:29:19 -0600 Subject: [LLVMbugs] [Bug 6103] Simple Register Coalescing assert failure: invalid register-register move instruction In-Reply-To: Message-ID: <201002090829.o198TJUv011006@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6103 Duncan Sands changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |WORKSFORME --- Comment #2 from Duncan Sands 2010-02-09 02:29:18 --- It no longer crashes here. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 9 02:29:36 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 9 Feb 2010 02:29:36 -0600 Subject: [LLVMbugs] [Bug 6240] clang++ is generally alignment argument to memset, but not setting the appropriate alignement on alloca In-Reply-To: Message-ID: <201002090829.o198Ta2b011045@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6240 Daniel Dunbar changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 9 10:05:59 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 9 Feb 2010 10:05:59 -0600 Subject: [LLVMbugs] [Bug 5052] JIT crash using sequence 'load --> bswap --> bitcast --> fptoui' In-Reply-To: Message-ID: <201002091605.o19G5x4K014992@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=5052 Jack changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|INVALID | --- Comment #8 from Jack 2010-02-09 10:05:59 --- It's windows-specific problem in JIT coz it didn't have some primitive functions ( like '__fixunssfdi' ) in Windows version. In revison 95656 I still not able to run attached code via 'lli'. Please, use Boot Camp to test it on Windows. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 9 11:34:54 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 9 Feb 2010 11:34:54 -0600 Subject: [LLVMbugs] [Bug 6253] SimpleRegisterCoalescer fails to update live-in information In-Reply-To: Message-ID: <201002091734.o19HYsGM019310@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6253 Jakob Stoklund Olesen changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #3 from Jakob Stoklund Olesen 2010-02-09 11:34:54 --- Applied as r95668, thanks! -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 9 11:36:25 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 9 Feb 2010 11:36:25 -0600 Subject: [LLVMbugs] [Bug 6265] New: ARMCodeEmitter can't pass hello_world Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6265 Summary: ARMCodeEmitter can't pass hello_world Product: new-bugs Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: sliao at google.com CC: llvmbugs at cs.uiuc.edu Based on LLVM's version 3 days ago: 95512: Abort happens at ARMCodeEmitter.cpp:554. ARMCodeEmitter::emitPseudoInstruction(const MachineInstr &MI) the Opcode (MI.getDesc().Opcode is 128 which is a invalid one. I found that opcode (128) name is MOVi32imm, but in the emitPseudoInstruction, this is treated as invalid opcode. It seems the ARM code emitter in llvm is not completely implemented? below, next to the faulting line is the comment "// FIXME: Add support for MOVimm32." See below (excerpted from ARMCodeEmitter.cpp). void ARMCodeEmitter::emitPseudoInstruction(const MachineInstr &MI) { unsigned Opcode = MI.getDesc().Opcode; switch (Opcode) { default: llvm_unreachable("ARMCodeEmitter::emitPseudoInstruction"); // FIXME: Add support for MOVimm32. case TargetInstrInfo::INLINEASM: { // We allow inline assembler nodes with empty bodies - they can // implicitly define registers, which is ok for JIT. if (MI.getOperand(0).getSymbolName()[0]) { llvm_report_error("JIT does not support inline asm!"); } break; } case TargetInstrInfo::DBG_LABEL: Because even hello_world doesn't work, I try to drill down further. Note that the hello_world.c is written as follows: extern int printf(const char*, ...); int main(int argc, char** argv) { int (*a)(const char*, ...) = printf; a("Hello World!\n"); return a; } If I don't refer to function pointer or any global variable in hello_world.c, then it can pass code emitter. So we may have to implement this MOVi32imm, or use another instruction for function pointer or global variables. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 9 12:11:17 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 9 Feb 2010 12:11:17 -0600 Subject: [LLVMbugs] [Bug 5626] Poor codegen for operations on vectors of non-power-of-two lengths In-Reply-To: Message-ID: <201002091811.o19IBHEd020909@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=5626 Mon P Wang changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED --- Comment #9 from Mon P Wang 2010-02-09 12:11:16 --- The fix for this was checked in here that allows the use of wider loads if the alignment allows it and some cleanup on we build vectors. http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20100118/094945.html Closing. Please file a new bug if there are other issues. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 9 12:28:18 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 9 Feb 2010 12:28:18 -0600 Subject: [LLVMbugs] [Bug 4613] llvm-gcc x86-64 abi miscompilation In-Reply-To: Message-ID: <201002091828.o19ISIBC021647@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=4613 Dale Johannesen changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #12 from Dale Johannesen 2010-02-09 12:28:17 --- I think Stuart's recent work in this area has fixed it. The test passes for me, and the code looks OK. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 9 12:43:41 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 9 Feb 2010 12:43:41 -0600 Subject: [LLVMbugs] [Bug 5052] JIT crash using sequence 'load --> bswap --> bitcast --> fptoui' In-Reply-To: Message-ID: <201002091843.o19IhfH8022436@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=5052 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution| |INVALID --- Comment #9 from Chris Lattner 2010-02-09 12:43:40 --- Ok, then that's not a bug as much as a build/configuration problem. You need to get __fixunssfdi from somewhere for the JIT to work, code for it is available at http://compiler-rt.llvm.org/ -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 9 14:20:51 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 9 Feb 2010 14:20:51 -0600 Subject: [LLVMbugs] [Bug 6267] New: Documentation path is weird Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6267 Summary: Documentation path is weird Product: Build scripts Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: Makefiles AssignedTo: unassignedbugs at nondot.org ReportedBy: cizra at mailinator.com CC: llvmbugs at cs.uiuc.edu LLVM wants to install documents into ${prefix}/docs/llvm. That's unorthodox, the rest of the world uses ${prefix}/doc/projectname. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 9 17:05:47 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 9 Feb 2010 17:05:47 -0600 Subject: [LLVMbugs] [Bug 5018] ffi/oprofile checked for even when explicitly disabled In-Reply-To: Message-ID: <201002092305.o19N5lDa003980@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=5018 Jeffrey Yasskin changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED --- Comment #8 from Jeffrey Yasskin 2010-02-09 17:05:46 --- Fixed in r95712. I'm happy to change the defaults to pay attention to what's installed if Nick convinces people that's the right behavior. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Wed Feb 10 02:36:35 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Wed, 10 Feb 2010 02:36:35 -0600 Subject: [LLVMbugs] [Bug 6219] Tablegen lexer misreading cmp${cc}pd ? In-Reply-To: Message-ID: <201002100836.o1A8aZlo029904@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6219 Duncan Sands changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #7 from Duncan Sands 2010-02-10 02:36:34 --- Thanks for fixing this Sean! Tblgen is no longer throwing any exceptions during the LLVM build. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Wed Feb 10 04:50:13 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Wed, 10 Feb 2010 04:50:13 -0600 Subject: [LLVMbugs] [Bug 6271] New: JIT runFunction doesn' t clean up the generated stub function Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6271 Summary: JIT runFunction doesn't clean up the generated stub function Product: libraries Version: trunk Platform: All OS/Version: All Status: NEW Severity: normal Priority: P2 Component: Target-Independent JIT AssignedTo: unassignedbugs at nondot.org ReportedBy: shivramk at gmail.com CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4211) --> (http://llvm.org/bugs/attachment.cgi?id=4211) Possible fix JIT::runFunction may generate a stub function in certain cases. The stub function is temporary and should be erased once it has been executed. Attached a possible fix. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Wed Feb 10 04:53:55 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Wed, 10 Feb 2010 04:53:55 -0600 Subject: [LLVMbugs] [Bug 6272] New: Alternative to echo > register Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6272 Summary: Alternative to echo > register Product: Documentation Version: trunk Platform: PC URL: http://llvm.org/docs/GettingStarted.html#optionalconfig OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: General docs AssignedTo: unassignedbugs at nondot.org ReportedBy: gmarkhor at gmail.com CC: llvmbugs at cs.uiuc.edu In order not to start the root session, there is an alternative to echo > register in Debian: sudo update-binfmts --install llvm /path/to/lli --magic 'BC' -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Wed Feb 10 08:52:08 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Wed, 10 Feb 2010 08:52:08 -0600 Subject: [LLVMbugs] [Bug 6273] New: llc -march=cpp code does not compile: error: 'PointerTy_138 ' was not declared in this scope Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6273 Summary: llc -march=cpp code does not compile: error: 'PointerTy_138' was not declared in this scope Product: tools Version: 2.6 Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: llc AssignedTo: unassignedbugs at nondot.org ReportedBy: timo.lindfors at iki.fi CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4212) --> (http://llvm.org/bugs/attachment.cgi?id=4212) testcase Steps to reproduce: 1) llc -march=cpp madt.bc -o madt.cpp 2) g++ madt.cpp -o madt `llvm-config --cppflags --ldflags --libs` Expected results: 2) generated code compiles Actual results: 2) generated code fails to compile: madt.cpp: In function 'llvm::Module* makeLLVMModule()': madt.cpp:680: error: 'PointerTy_138' was not declared in this scope madt.cpp:686: error: 'PointerTy_141' was not declared in this scope -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Wed Feb 10 11:49:13 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Wed, 10 Feb 2010 11:49:13 -0600 Subject: [LLVMbugs] [Bug 6274] New: -Wreturn-type warning for function using __builtin_expect Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6274 Summary: -Wreturn-type warning for function using __builtin_expect Product: clang Version: unspecified Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: Semantic Analyzer AssignedTo: unassignedclangbugs at nondot.org ReportedBy: sharparrow1 at yahoo.com CC: llvmbugs at cs.uiuc.edu Blocks: 5511 Testcase: int a() { if (__builtin_expect(1,1)) return 1; } Warns with -Wreturn-type; shouldn't warn because the return is always executed. This blocks Firefox because it uses a construct like this and -Werror=return-type. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Wed Feb 10 18:36:42 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Wed, 10 Feb 2010 18:36:42 -0600 Subject: [LLVMbugs] [Bug 6186] performance issue in tail duplication compiling js_Interpret from Firefox In-Reply-To: Message-ID: <201002110036.o1B0agbR026529@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6186 Jakob Stoklund Olesen changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #5 from Jakob Stoklund Olesen 2010-02-10 18:36:41 --- Fixed in r95831 and r95832. Tail duplication is 130x faster on the testcase. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Thu Feb 11 15:40:45 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Thu, 11 Feb 2010 15:40:45 -0600 Subject: [LLVMbugs] [Bug 6279] New: insertvalue instruction / " Instruction not interpretable yet!" / lli crash Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6279 Summary: insertvalue instruction / "Instruction not interpretable yet!" / lli crash Product: tools Version: trunk Platform: PC OS/Version: Windows NT Status: NEW Severity: normal Priority: P2 Component: lli AssignedTo: unassignedbugs at nondot.org ReportedBy: mattp223 at renzelmann.com CC: llvmbugs at cs.uiuc.edu System: - x86-64 - GCC 4.2.4 - LLVM-GCC / LLVM both built via SVN, updated today =========================================== Low Level Virtual Machine (http://llvm.org/): llvm version 2.7svn Optimized build with assertions. Built Feb 11 2010 (14:28:44). Host: x86_64-unknown-linux-gnu Host CPU: penryn Registered Targets: x86 - 32-bit X86: Pentium-Pro and above x86-64 - 64-bit X86: EM64T and AMD64 =========================================== // Example source code. Call this main.c. struct st { unsigned long buf; int len; }; struct st test (void); int main (int a, char **v) { test (); } struct st test (void) { struct st ret; ret.buf = 0; ret.len = 0; return ret; } =========================================== Compile it via: llvm-gcc -c -emit-llvm main.c -o main.o =========================================== Execute it like this: lli -force-interpreter main.o =========================================== The result: %mrv4 = insertvalue %0 undef, i64 %mrv, 0 ; <%0> [#uses=1]Instruction not interpretable yet! UNREACHABLE executed at Interpreter.h:178! 0 lli 0x0000000000c54ddf 1 lli 0x0000000000c55650 2 libpthread.so.0 0x00002b1f369918e0 3 libc.so.6 0x00002b1f375885cb gsignal + 59 4 libc.so.6 0x00002b1f37589a90 abort + 272 5 lli 0x0000000000c36252 llvm::llvm_unreachable_internal(char const*, char const*, unsigned int) + 370 6 lli 0x00000000008da2f0 llvm::InstVisitor::visit(llvm::Instruction&) + 112 7 lli 0x00000000008d85e2 llvm::Interpreter::run() + 66 8 lli 0x00000000008c7e45 llvm::Interpreter::runFunction(llvm::Function*, std::vector > const&) + 261 9 lli 0x00000000008fb9b1 llvm::ExecutionEngine::runFunctionAsMain(llvm::Function*, std::vector > const&, char const* const*) + 1153 10 lli 0x0000000000507ef6 main + 1942 11 libc.so.6 0x00002b1f375759d4 __libc_start_main + 244 12 lli 0x0000000000506249 Stack dump: 0. Program arguments: lli -force-interpreter main.o Aborted =========================================== Here is the disassembly of the end of the test function for reference: return: ; preds = %entry %retval1 = bitcast %struct.st* %retval to %0* ; <%0*> [#uses=2] %mrv_gep = getelementptr %0* %retval1, i32 0, i32 0 ; [#uses=1] %mrv = load i64* %mrv_gep ; [#uses=1] %mrv_gep2 = getelementptr %0* %retval1, i32 0, i32 1 ; [#uses=1] %mrv3 = load i64* %mrv_gep2 ; [#uses=1] %mrv4 = insertvalue %0 undef, i64 %mrv, 0 ; <%0> [#uses=1] %mrv5 = insertvalue %0 %mrv4, i64 %mrv3, 1 ; <%0> [#uses=1] ret %0 %mrv5 =========================================== For comparison, executing the following command on the same LLVM bitcode does not result in a crash: lli main.o The JIT compiler appears to be unaffected. =========================================== The root issue seems to be the irritating problems associated with returning structures by value. Please let me know if I can provide any additional information. Thanks and regards, Matt -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Thu Feb 11 16:01:33 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Thu, 11 Feb 2010 16:01:33 -0600 Subject: [LLVMbugs] [Bug 6279] insertvalue instruction / "Instruction not interpretable yet!" / lli crash In-Reply-To: Message-ID: <201002112201.o1BM1XsM010438@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6279 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |DUPLICATE --- Comment #1 from Chris Lattner 2010-02-11 16:01:28 --- *** This bug has been marked as a duplicate of bug 3858 *** -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Thu Feb 11 16:31:12 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Thu, 11 Feb 2010 16:31:12 -0600 Subject: [LLVMbugs] [Bug 6280] New: Use information from configure script more accurately Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6280 Summary: Use information from configure script more accurately Product: new-bugs Version: trunk Platform: Other OS/Version: other Status: NEW Severity: minor Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: reeuwijk at few.vu.nl CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4214) --> (http://llvm.org/bugs/attachment.cgi?id=4214) The patch described above The small attached patch against the current trunk avoids using setrlimit() if the configure script has determined that it isn't available. If getrlimit() is not available, no attempt is made to set resource limits either, since setrlimit() gets limits that are first initialized with getrlimit(). The attached patch also makes references to a few more signals conditional, since they are at least on the current minix 3 system not available. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Thu Feb 11 18:38:07 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Thu, 11 Feb 2010 18:38:07 -0600 Subject: [LLVMbugs] [Bug 6280] Use information from configure script more accurately In-Reply-To: Message-ID: <201002120038.o1C0c7FY019363@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6280 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Chris Lattner 2010-02-11 18:38:06 --- Applied, thanks! http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20100208/096044.html -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Thu Feb 11 19:17:28 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Thu, 11 Feb 2010 19:17:28 -0600 Subject: [LLVMbugs] [Bug 6282] New: Multiple inclusion elimination is too aggressive Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6282 Summary: Multiple inclusion elimination is too aggressive Product: clang Version: trunk Platform: PC OS/Version: All Status: NEW Severity: normal Priority: P2 Component: preprocessor AssignedTo: unassignedclangbugs at nondot.org ReportedBy: dgregor at apple.com CC: llvmbugs at cs.uiuc.edu Blocks: 6023 In the following example, Clang's multiple-inclusion detection is suppressing the second inclusion of "t.h", so we get different results from GCC. This actually manifests itself in a Boost bug, since Boost often uses "vertical repetition" (i.e., including the same file many times with different macro definitions) for its preprocessor metaprogramming. terfin:Projects dgregor$ cat t.h #ifndef ITERATING void NAME(int) { } #else void NAME(int) { } #endif terfin:Projects dgregor$ cat t.c #define ITERATING 1 #define NAME foo #include "t.h" #include "t.h" # 1 "t.c" # 1 "" # 1 "" # 1 "t.c" # 1 "t.h" 1 void foo(int) { } # 4 "t.c" 2 # 1 "t.h" 1 void foo(int) { } # 5 "t.c" 2 # 1 "t.c" # 1 "t.c" 1 # 1 "" 1 # 1 "" 3 # 120 "" 3 # 120 "" 1 # 121 "" 2 # 1 "t.c" 2 # 1 "./t.h" 1 void foo(int) { } # 4 "t.c" 2 -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Fri Feb 12 02:04:35 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Fri, 12 Feb 2010 02:04:35 -0600 Subject: [LLVMbugs] [Bug 6282] Multiple inclusion elimination is too aggressive In-Reply-To: Message-ID: <201002120804.o1C84Z7b007694@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6282 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #2 from Chris Lattner 2010-02-12 02:04:35 --- Fixed, thanks! http://lists.cs.uiuc.edu/pipermail/cfe-commits/Week-of-Mon-20100208/027438.html -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Fri Feb 12 07:11:14 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Fri, 12 Feb 2010 07:11:14 -0600 Subject: [LLVMbugs] [Bug 6283] New: Assertion "invalid register-register move instruction" in ' Simple Register Coalescing' failed Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6283 Summary: Assertion "invalid register-register move instruction" in 'Simple Register Coalescing' failed Product: new-bugs Version: unspecified Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: baldrick at free.fr CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4217) --> (http://llvm.org/bugs/attachment.cgi?id=4217) testcase .ll This breaks the dragonegg self-host build. $ llc reg.ll llc: llvm/lib/Target/X86/X86InstrInfo.cpp:706: virtual bool llvm::X86InstrInfo::isMoveInstr(const llvm::MachineInstr&, unsigned int&, unsigned int&, unsigned int&, unsigned int&) const: Assertion `MI.getNumOperands() >= 2 && MI.getOperand(0).isReg() && MI.getOperand(1).isReg() && "invalid register-register move instruction"' failed. ... llvm::X86InstrInfo::isMoveInstr(llvm::MachineInstr const&, unsigned int&, unsigned int&, unsigned int&, unsigned int&) const + 535 7 llc 0x0000000001389e4b llvm::LiveIntervals::getVNInfoSourceReg(llvm::VNInfo const*) const + 511 8 llc 0x0000000001307847 llvm::SimpleRegisterCoalescing::JoinIntervals(llvm::LiveInterval&, llvm::LiveInterval&, bool&) + 2901 9 llc 0x0000000001305493 llvm::SimpleRegisterCoalescing::JoinCopy(llvm::CopyRec&, bool&) + 7585 10 llc 0x00000000013088f2 llvm::SimpleRegisterCoalescing::CopyCoalesceInMBB(llvm::MachineBasicBlock*, std::vector >&) + 1226 11 llc 0x0000000001308c60 llvm::SimpleRegisterCoalescing::joinIntervals() + 624 12 llc 0x00000000013096ef llvm::SimpleRegisterCoalescing::runOnMachineFunction(llvm::MachineFunction&) + 827 ... Stack dump: 0. Program arguments: llc reg.ll 1. Running pass 'Simple Register Coalescing' on function '@get_computation_cost_at' Aborted (core dumped) -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Fri Feb 12 07:58:08 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Fri, 12 Feb 2010 07:58:08 -0600 Subject: [LLVMbugs] [Bug 6284] New: IRBuilder CreatePointerCast compilation error Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6284 Summary: IRBuilder CreatePointerCast compilation error Product: new-bugs Version: unspecified Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: edwintorok at gmail.com CC: llvmbugs at cs.uiuc.edu Value *CreatePointerCast(Value *V, const Type *DestTy, const Twine &Name = "") { if (V->getType() == DestTy) return V; if (Constant *VC = dyn_cast(V)) return Folder.CreatePointerCast(VC, DestTy); return Insert(CastInst::CreatePointerCast(V, DestTy), Name); } But there is no CreatePointerCast() in TargetFolder, resulting in build errors such as this: include/llvm/Support/IRBuilder.h: In member function ???llvm::Value* llvm::IRBuilder::CreatePointerCast(llvm::Value*, const llvm::Type*, const llvm::Twine&) [with bool preserveNames = false, T = llvm::TargetFolder, Inserter = llvm::IRBuilderDefaultInserter]???: include/llvm/Support/IRBuilder.h:739: error: ???class llvm::TargetFolder??? has no member named ???CreatePointerCast??? As a workaround CreateBitcast() can be used. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Fri Feb 12 09:38:29 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Fri, 12 Feb 2010 09:38:29 -0600 Subject: [LLVMbugs] [Bug 5851] llvm binds wrong symbols for stdcall functions In-Reply-To: Message-ID: <201002121538.o1CFcTTp011315@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=5851 Anton Korobeynikov changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #3 from Anton Korobeynikov 2010-02-12 09:38:29 --- Fixed in r95980 -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Fri Feb 12 09:38:40 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Fri, 12 Feb 2010 09:38:40 -0600 Subject: [LLVMbugs] [Bug 2936] wrong x86 asm symbol name decoration In-Reply-To: Message-ID: <201002121538.o1CFce85011344@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=2936 Anton Korobeynikov changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #13 from Anton Korobeynikov 2010-02-12 09:38:39 --- Fixed in r95980 -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Fri Feb 12 17:07:04 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Fri, 12 Feb 2010 17:07:04 -0600 Subject: [LLVMbugs] [Bug 6271] JIT runFunction doesn't clean up the generated stub function In-Reply-To: Message-ID: <201002122307.o1CN74ub000952@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6271 Jeffrey Yasskin changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Jeffrey Yasskin 2010-02-12 17:07:00 --- Fixed in r96037. Thanks! -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Fri Feb 12 18:10:27 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Fri, 12 Feb 2010 18:10:27 -0600 Subject: [LLVMbugs] [Bug 6274] -Wreturn-type warning for function using __builtin_expect In-Reply-To: Message-ID: <201002130010.o1D0ARel003908@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6274 Eli Friedman changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #2 from Eli Friedman 2010-02-12 18:10:23 --- Fixed in r96054. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Fri Feb 12 20:43:46 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Fri, 12 Feb 2010 20:43:46 -0600 Subject: [LLVMbugs] [Bug 6283] Assertion "invalid register-register move instruction" in ' Simple Register Coalescing' failed In-Reply-To: Message-ID: <201002130243.o1D2hkaM011574@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6283 Jakob Stoklund Olesen changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED --- Comment #7 from Jakob Stoklund Olesen 2010-02-12 20:43:46 --- Fixed in http://llvm.org/viewvc/llvm-project?rev=96072&view=rev -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Sat Feb 13 13:01:24 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Sat, 13 Feb 2010 13:01:24 -0600 Subject: [LLVMbugs] [Bug 6291] New: renumbered opcode values breaks llvm-c backwards compatibility guarantee Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6291 Summary: renumbered opcode values breaks llvm-c backwards compatibility guarantee Product: libraries Version: trunk Platform: PC OS/Version: All Status: NEW Severity: normal Priority: P2 Component: System Library AssignedTo: unassignedbugs at nondot.org ReportedBy: idadesub at users.sourceforge.net CC: llvmbugs at cs.uiuc.edu Since 2.6, llvm added one new instruction, IndirectBr, and removed the Free and Malloc instructions. This breaks llvm-c's LLVMOpcode enum by renumbering the instruction values. For reference, the Malloc operator was removed in r84299, Free was removed in r85176, and the IndirectBr operator was added in r85274. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Sat Feb 13 13:49:08 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Sat, 13 Feb 2010 13:49:08 -0600 Subject: [LLVMbugs] [Bug 6292] New: [qoi] implement "warning: no newline at end of file" Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6292 Summary: [qoi] implement "warning: no newline at end of file" Product: clang Version: unspecified Platform: PC OS/Version: All Status: NEW Severity: normal Priority: P2 Component: Semantic Analyzer AssignedTo: unassignedclangbugs at nondot.org ReportedBy: daniel at zuster.org CC: llvmbugs at cs.uiuc.edu -- ddunbar at giles:tmp$ printf "int x;" | clang -fsyntax-only -x c - ddunbar at giles:tmp$ -- -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Sat Feb 13 14:01:14 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Sat, 13 Feb 2010 14:01:14 -0600 Subject: [LLVMbugs] [Bug 6292] [qoi] implement "warning: no newline at end of file" In-Reply-To: Message-ID: <201002132001.o1DK1E5P011556@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6292 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |WORKSFORME --- Comment #1 from Chris Lattner 2010-02-13 14:01:14 --- We have this, -pedantic. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Sat Feb 13 14:19:21 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Sat, 13 Feb 2010 14:19:21 -0600 Subject: [LLVMbugs] [Bug 6292] [qoi] "warning: no newline at end of file" is ugly when printed In-Reply-To: Message-ID: <201002132019.o1DKJLl0012419@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6292 Daniel Dunbar changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|WORKSFORME | Summary|[qoi] implement "warning: no|[qoi] "warning: no newline |newline at end of file" |at end of file" is ugly when | |printed --- Comment #2 from Daniel Dunbar 2010-02-13 14:19:19 --- Great. Does it have to be ugly: -- ddunbar at giles:tmp$ printf "int x;" | clang -fsyntax-only -pedantic -x c - :1:7: warning: no newline at end of file int x; ^ 1 diagnostic generated. ddunbar at giles:tmp$ -- -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Sat Feb 13 16:01:28 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Sat, 13 Feb 2010 16:01:28 -0600 Subject: [LLVMbugs] [Bug 6280] Use information from configure script more accurately In-Reply-To: Message-ID: <201002132201.o1DM1S6U017147@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6280 Kees van Reeuwijk changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|FIXED | --- Comment #3 from Kees van Reeuwijk 2010-02-13 16:01:27 --- Oops, Matti is right. Yes, that's an error. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Sun Feb 14 04:35:44 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Sun, 14 Feb 2010 04:35:44 -0600 Subject: [LLVMbugs] [Bug 5425] split libAnalysis into libAnalysis and libChecker In-Reply-To: Message-ID: <201002141035.o1EAZhbh009140@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=5425 Zhongxing Xu changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #6 from Zhongxing Xu 2010-02-14 04:35:35 --- This has been done by Ted. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Sun Feb 14 08:04:11 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Sun, 14 Feb 2010 08:04:11 -0600 Subject: [LLVMbugs] [Bug 6297] New: RWMutex.cpp and pthread on mingw Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6297 Summary: RWMutex.cpp and pthread on mingw Product: libraries Version: trunk Platform: PC OS/Version: Windows NT Status: NEW Severity: major Priority: P2 Component: Core LLVM classes AssignedTo: unassignedbugs at nondot.org ReportedBy: forumer at smartmobili.com CC: llvmbugs at cs.uiuc.edu Hi, on mingw platform RWMUtex.cpp asserts L87 due to the fact pthread doesnt' support passing a non zero value to pthread_rwlock_init. Here is a fix(tested): $ svn diff RWMutex.cpp Index: RWMutex.cpp =================================================================== --- RWMutex.cpp (revision 96005) +++ RWMutex.cpp (working copy) @@ -83,7 +83,11 @@ #endif // Initialize the rwlock +#ifdef __MINGW32__ + errorcode = pthread_rwlock_init(rwlock, 0); +#else errorcode = pthread_rwlock_init(rwlock, &attr); +#endif assert(errorcode == 0); // Destroy the attributes -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Sun Feb 14 10:15:26 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Sun, 14 Feb 2010 10:15:26 -0600 Subject: [LLVMbugs] [Bug 6298] New: Wrong parsing of record decls in parameters' lists Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6298 Summary: Wrong parsing of record decls in parameters' lists Product: clang Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: Semantic Analyzer AssignedTo: unassignedclangbugs at nondot.org ReportedBy: bagnara at cs.unipr.it CC: llvmbugs at cs.uiuc.edu The following testcase shows that clang erroneously "believes" that the scope of record declarations in parameters' lists extends beyond the block scope and not inside the block, as the standard mandates. $ cat bug.c struct s { int x; }; void f(struct s { int y; }* v) { } void g(struct t { int x; } *v) { struct t { int y; }; } $ clang bug.c bug.c:4:15: error: redefinition of 's' void f(struct s { int y; }* v) { ^ bug.c:2:8: note: previous definition is here struct s { int x; }; ^ bug.c:7:15: warning: declaration of 'struct t' will not be visible outside of this function void g(struct t { int x; } *v) { ^ 3 diagnostics generated. $ gcc -c -w bug.c bug.c: In function 'g': bug.c:8: error: redefinition of 'struct t' $ -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Sun Feb 14 12:17:47 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Sun, 14 Feb 2010 12:17:47 -0600 Subject: [LLVMbugs] [Bug 6299] New: LSR assert failure: "Zero allocated in a base register!" Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6299 Summary: LSR assert failure: "Zero allocated in a base register!" Product: new-bugs Version: unspecified Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: baldrick at free.fr CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4226) --> (http://llvm.org/bugs/attachment.cgi?id=4226) testcase .ll $ llc var-tracking.ll llc: llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp:907: bool::LSRUse::InsertFormula(size_t, const::Formula&): Assertion `!(*I)->isZero() && "Zero allocated in a base register!"' failed. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Sun Feb 14 12:20:00 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Sun, 14 Feb 2010 12:20:00 -0600 Subject: [LLVMbugs] [Bug 6300] New: SimpleRegisterCoalescing assert: Interval does not exist for register Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6300 Summary: SimpleRegisterCoalescing assert: Interval does not exist for register Product: new-bugs Version: unspecified Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: baldrick at free.fr CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4227) --> (http://llvm.org/bugs/attachment.cgi?id=4227) testcase .ll $ llc coalesce.ll llc: llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h:87: llvm::LiveInterval& llvm::LiveIntervals::getInterval(unsigned int): Assertion `I != r2iMap_.end() && "Interval does not exist for register"' failed. ... 7 llc 0x000000000130df89 llvm::SimpleRegisterCoalescing::JoinCopy(llvm::CopyRec&, bool&) + 5753 8 llc 0x0000000001311b9e llvm::SimpleRegisterCoalescing::CopyCoalesceInMBB(llvm::MachineBasicBlock*, std::vector >&) + 1368 9 llc 0x0000000001311e7e llvm::SimpleRegisterCoalescing::joinIntervals() + 624 10 llc 0x000000000131290d llvm::SimpleRegisterCoalescing::runOnMachineFunction(llvm::MachineFunction&) + 827 -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Sun Feb 14 12:20:18 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Sun, 14 Feb 2010 12:20:18 -0600 Subject: [LLVMbugs] [Bug 6280] Use information from configure script more accurately In-Reply-To: Message-ID: <201002141820.o1EIKIOf023051@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6280 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution| |FIXED --- Comment #4 from Chris Lattner 2010-02-14 12:20:17 --- fixed in r96172 -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Sun Feb 14 15:17:01 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Sun, 14 Feb 2010 15:17:01 -0600 Subject: [LLVMbugs] [Bug 5425] split libAnalysis into libAnalysis and libChecker In-Reply-To: Message-ID: <201002142117.o1ELH1oj001164@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=5425 Zhongxing Xu changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED Mike Stump changed: What |Removed |Added ---------------------------------------------------------------------------- CC|mikestump at comcast.net | --- Comment #6 from Zhongxing Xu 2010-02-14 04:35:35 --- This has been done by Ted. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Sun Feb 14 17:57:34 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Sun, 14 Feb 2010 17:57:34 -0600 Subject: [LLVMbugs] [Bug 2516] llvm-gcc miscompiles crtbegin.o on i386-pc-solaris* In-Reply-To: Message-ID: <201002142357.o1ENvYYk008736@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=2516 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #19 from Chris Lattner 2010-02-14 17:57:34 --- Ok, good enough for me. If there are remaining issues here, please file a new bug for them. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Sun Feb 14 21:28:52 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Sun, 14 Feb 2010 21:28:52 -0600 Subject: [LLVMbugs] [Bug 6302] New: static analyzer crashes on dereference to objc_object struct Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6302 Summary: static analyzer crashes on dereference to objc_object struct Product: new-bugs Version: trunk Platform: Macintosh OS/Version: MacOS X Status: NEW Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: llvm at gentlyusedunderwear.com CC: llvmbugs at cs.uiuc.edu The following line crashes during analyzing on clang version 1.1 (trunk 96203) [redExplanationText cell]->isa = [UIAlignBottomTextFieldCell class]; clang compiles the code, and the code work, it just can't analyze that line: Assertion failed: ((Ex->getType()->isAggregateType()) && "Other kinds of expressions with non-aggregate/union types do" " not have lvalues."), function VisitLValue, file GRExprEngine.cpp, line 922. 0 clang 0x00000001012f90c2 1 clang 0x00000001012f994c 2 libSystem.B.dylib 0x00007fff814d180a _sigtramp + 26 3 libSystem.B.dylib 0x00007fff8147650a tiny_malloc_from_free_list + 1196 4 libSystem.B.dylib 0x00007fff8154cef0 __pthread_markcancel + 0 5 clang 0x00000001004b140e 6 clang 0x00000001004b15ff 7 clang 0x00000001004ae51e 8 clang 0x00000001004b6845 9 clang 0x00000001004a1bfc 10 clang 0x00000001004a1f5d 11 clang 0x0000000100047072 12 clang 0x0000000100044a28 13 clang 0x0000000100044fa9 14 clang 0x000000010026d625 15 clang 0x0000000100051db9 16 clang 0x0000000100037e7e 17 clang 0x000000010003a854 18 clang 0x00000001000359f8 Stack dump: 0. Program arguments: /Developer/usr/bin/clang -cc1 -triple i386-apple-darwin9.0.0 -analyze -disable-free -main-file-name UIController.m -analyzer-store=region -analyzer-opt-analyze-nested-blocks -analyzer-check-dead-stores -analyzer-check-security-syntactic -analyzer-check-objc-mem -analyzer-eagerly-assume -analyzer-check-objc-methodsigs -analyzer-check-objc-unused-ivars -analyzer-output plist -mrelocation-model dynamic-no-pic -pic-level 1 -mdisable-fp-elim -target-cpu yonah -resource-dir /Developer/usr/lib/clang/1.1 -isysroot /Developer/SDKs/MacOSX10.6.sdk -I/Volumes/Consecrated/rosyna/Dev/Perforce/UnsanityInstaller/build/Unsanity Installer.build/Deployment/Unsanity Installer.build/Unsanity Installer.hmap -F/Volumes/Consecrated/rosyna/Dev/Perforce/UnsanityInstaller/build/Deployment -I/Volumes/Consecrated/rosyna/Dev/Perforce/UnsanityInstaller/build/Deployment/include -I../Smart Crash Reports -I/Volumes/Consecrated/rosyna/Dev/Perforce/UnsanityInstaller/build/Unsanity Installer.build/Deployment/Unsanity Installer.build/DerivedSources/i386 -I/Volumes/Consecrated/rosyna/Dev/Perforce/UnsanityInstaller/build/Unsanity Installer.build/Deployment/Unsanity Installer.build/DerivedSources -Os -Wno-trigraphs -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -fmessage-length 0 -fvisibility hidden -fdiagnostics-print-source-range-info -fpascal-strings -fdiagnostics-show-option -o /Volumes/Consecrated/rosyna/Dev/Perforce/UnsanityInstaller/build/Unsanity Installer.build/Deployment/Unsanity Installer.build/StaticAnalyzer/normal/i386/UIController.plist -x objective-c /Volumes/Consecrated/rosyna/Dev/Perforce/UnsanityInstaller/UIController.m 1. /Volumes/Consecrated/rosyna/Dev/Perforce/UnsanityInstaller/UIController.m:223:1: current parser token '-' 2. /Volumes/Consecrated/rosyna/Dev/Perforce/UnsanityInstaller/UIController.m:155:2: Error evaluating statement 3. /Volumes/Consecrated/rosyna/Dev/Perforce/UnsanityInstaller/UIController.m:155:2: Error evaluating statement 4. /Volumes/Consecrated/rosyna/Dev/Perforce/UnsanityInstaller/UIController.m:155:2: Error evaluating statement clang: error: analyzer command failed due to signal 6 (use -v to see invocation) with line 155 being the one pasted above. Where [redTextReplacement cell] returns an instance of an objc_object struct: typedef struct objc_object { Class isa; } *id; -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 15 02:45:22 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 15 Feb 2010 02:45:22 -0600 Subject: [LLVMbugs] [Bug 6303] New: MCAssembler uses values outside of enum range Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6303 Summary: MCAssembler uses values outside of enum range Product: new-bugs Version: unspecified Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: baldrick at free.fr CC: llvmbugs at cs.uiuc.edu Reported by g++-4.5. Note that gcc passes like VRP know that enum values are in range, and if they are not (like here) then you may get a miscompile. lib/MC/MCAssembler.cpp: In function 'unsigned int getFixupKindLog2Size(llvm::MCFixupKind)': lib/MC/MCAssembler.cpp:57:3: warning: case value '129' not in enumerated type 'llvm::MCFixupKind' lib/MC/MCAssembler.cpp:61:3: warning: case value '130' not in enumerated type 'llvm::MCFixupKind' lib/MC/MCAssembler.cpp: In function 'bool isFixupKindPCRel(llvm::MCFixupKind)': lib/MC/MCAssembler.cpp:71:3: warning: case value '129' not in enumerated type 'llvm::MCFixupKind' lib/MC/MCAssembler.cpp:73:3: warning: case value '130' not in enumerated type 'llvm::MCFixupKind' -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 15 02:50:54 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 15 Feb 2010 02:50:54 -0600 Subject: [LLVMbugs] [Bug 6304] New: AlphaRegisterInfo.cpp:306:52: warning: array subscript is above array bounds Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6304 Summary: AlphaRegisterInfo.cpp:306:52: warning: array subscript is above array bounds Product: new-bugs Version: unspecified Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: baldrick at free.fr CC: llvmbugs at cs.uiuc.edu According to gcc-4.5: lib/Target/Alpha/AlphaRegisterInfo.cpp: In member function 'virtual void llvm::AlphaRegisterInfo::emitEpilogue(llvm::MachineFunction&, llvm::MachineBasicBlock&) const': lib/Target/Alpha/AlphaRegisterInfo.cpp:306:52: warning: array subscript is above array bounds The line in question is this: Msg << "Too big a stack frame at " + NumBytes; Presumably here "+" is pointer addition, resulting in a pointer into the string. At this point in the code gcc knows that NumBytes is quite big (NumBytes > IMM_HIGH), so probably sees that this results in pointing beyond the end of the string. This is not the only place with this "Msg << c_string + Integer;" construction, but is probably the only one where gcc knew that the offset is always large. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 15 04:37:47 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 15 Feb 2010 04:37:47 -0600 Subject: [LLVMbugs] [Bug 6305] New: Jump threading creates blockaddress of entry block Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6305 Summary: Jump threading creates blockaddress of entry block Product: new-bugs Version: unspecified Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: baldrick at free.fr CC: llvmbugs at cs.uiuc.edu $ opt -jump-threading baddress.ll -disable-output blockaddress may not be used with the entry block! label %"17" Broken module found, compilation aborted! This is a recent regression. Testcase reduced from linux kernel module handling code. define void @module_add_modinfo_attrs() nounwind { entry: br label %"17" "17": ; preds = %entry call void undef(i64 ptrtoint (i8* blockaddress(@module_add_modinfo_attrs, %"17") to i64), i8* undef, i64 384, i64 undef, i32 32976) nounwind unreachable } -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 15 09:01:44 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 15 Feb 2010 09:01:44 -0600 Subject: [LLVMbugs] [Bug 6304] AlphaRegisterInfo.cpp:306:52: warning: array subscript is above array bounds In-Reply-To: Message-ID: <201002151501.o1FF1iM5000648@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6304 Andrew Lenharth changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |alenhar2 at uiuc.edu Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Andrew Lenharth 2010-02-15 09:01:43 --- Fixed, thanks, http://llvm.org/viewvc/llvm-project?view=rev&revision=96220 -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 15 10:22:50 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 15 Feb 2010 10:22:50 -0600 Subject: [LLVMbugs] [Bug 6306] New: MIPS code generator crash when compiling GCC's _mulsc3.o Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6306 Summary: MIPS code generator crash when compiling GCC's _mulsc3.o Product: new-bugs Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: ansingh at umich.edu CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4229) --> (http://llvm.org/bugs/attachment.cgi?id=4229) preprocessed libgcc2.c file When cross compiling llvm-gcc for mips architecture, I'm getting following error : cc1: /home/ansingh/install/llvm/src/lib/CodeGen/SimpleRegisterCoalescing.cpp:643: bool llvm::SimpleRegisterCoalescing::ReMaterializeTrivialDef(llvm::LiveInterval&, unsigned int, unsigned int, llvm::MachineInstr*): Assertion `SrcLR != SrcInt.end() && "Live range not found!"' failed. ../../src/gcc/libgcc2.c:1914: internal compiler error: Aborted failing command is : /data/projs/mips-llvm-gcc/obj/./gcc/xgcc -B/data/projs/mips-llvm-gcc/obj/./gcc/ -B/data/projs/install/mips-pc-linux/bin/ -B/data/projs/install/mips-pc-linux/lib/ -isystem /data/projs/install/mips-pc-linux/include -isystem /data/projs/install/mips-pc-linux/sys-include -O2 -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I../../src/gcc -I../../src/gcc/. -I../../src/gcc/../include -I../../src/gcc/../libcpp/include -I../../src/gcc/../libdecnumber -I../libdecnumber -I/home/ansingh/install/llvm/obj//include -I/home/ansingh/install/llvm/src/include -DL_muldc3 -fvisibility=hidden -DHIDE_EXPORTS -c ../../src/gcc/libgcc2.c -o libgcc/./_muldc3.o I'm attaching the preprocessed libgcc2.c file if that can be of any help. LLVM info: URL: https://user at llvm.org/svn/llvm-project/llvm/trunk Repository Root: https://user at llvm.org/svn/llvm-project Repository UUID: 91177308-0d34-0410-b5e6-96231b3b80d8 Revision: 95590 Node Kind: directory Schedule: normal Last Changed Author: lattner Last Changed Rev: 95588 Last Changed Date: 2010-02-08 17:09:08 -0500 (Mon, 08 Feb 2010) LLVM-gcc info: URL: http://llvm.org/svn/llvm-project/llvm-gcc-4.2/trunk Repository Root: http://llvm.org/svn/llvm-project Repository UUID: 91177308-0d34-0410-b5e6-96231b3b80d8 Revision: 96222 Node Kind: directory Schedule: normal Last Changed Author: rafael Last Changed Rev: 96222 Last Changed Date: 2010-02-15 10:41:17 -0500 (Mon, 15 Feb 2010) -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 15 11:23:55 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 15 Feb 2010 11:23:55 -0600 Subject: [LLVMbugs] [Bug 6307] New: Verifier: Instruction does not dominate all uses Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6307 Summary: Verifier: Instruction does not dominate all uses Product: libraries Version: trunk Platform: Macintosh OS/Version: MacOS X Status: NEW Severity: major Priority: P2 Component: Core LLVM classes AssignedTo: unassignedbugs at nondot.org ReportedBy: reports+llvm at xale.me CC: llvmbugs at cs.uiuc.edu This code compiled successfully with LLVM+Clang circa 92835. Note that compiling with -O0 avoids the assertion. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 15 14:48:09 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 15 Feb 2010 14:48:09 -0600 Subject: [LLVMbugs] [Bug 6305] Jump threading creates blockaddress of entry block In-Reply-To: Message-ID: <201002152048.o1FKm9bR018786@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6305 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Chris Lattner 2010-02-15 14:48:08 --- Fixed, thanks! http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20100215/096235.html -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 15 14:52:04 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 15 Feb 2010 14:52:04 -0600 Subject: [LLVMbugs] [Bug 6291] renumbered opcode values breaks llvm-c backwards compatibility guarantee In-Reply-To: Message-ID: <201002152052.o1FKq4DE018977@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6291 Bill Wendling changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |wendling at apple.com Status|NEW |RESOLVED Resolution| |FIXED --- Comment #2 from Bill Wendling 2010-02-15 14:52:03 --- Fixed here: http://llvm.org/viewvc/llvm-project?rev=96264&view=rev -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 15 16:03:54 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 15 Feb 2010 16:03:54 -0600 Subject: [LLVMbugs] [Bug 6300] SimpleRegisterCoalescing assert: Interval does not exist for register In-Reply-To: Message-ID: <201002152203.o1FM3si6022582@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6300 Jakob Stoklund Olesen changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #5 from Jakob Stoklund Olesen 2010-02-15 16:03:53 --- Fixed in r96279 -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 15 16:07:15 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 15 Feb 2010 16:07:15 -0600 Subject: [LLVMbugs] [Bug 6310] New: clang codegen fails with clang: /home/corni/clang/llvm/ include/llvm/Support/Casting.h:200: typename llvm::cast_retty:: ret_type llvm::cast(const Y&) [with X = clang::VarDecl, Y = const clang:: NamedDecl*]: Assertion `isa(Val) && "cast() arg Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6310 Summary: clang codegen fails with clang: /home/corni/clang/llvm/include/llvm/Support/Casting.h:20 0: typename llvm::cast_retty::ret_type llvm::cast(const Y&) [with X = clang::VarDecl, Y = const clang::NamedDecl*]: Assertion `isa(Val) && "cast() arg Product: clang Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: LLVM Codegen AssignedTo: unassignedclangbugs at nondot.org ReportedBy: c.r1 at gmx.de CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4234) --> (http://llvm.org/bugs/attachment.cgi?id=4234) backtrace of clang crashing Hi, the attached preprocessed source (unreduced) crashes with clang: /home/corni/clang/llvm/include/llvm/Support/Casting.h:200: typename llvm::cast_retty::ret_type llvm::cast(const Y&) [with X = clang::VarDecl, Y = const clang::NamedDecl*]: Assertion `isa(Val) && "cast() argument of incompatible type!"' failed. and the attached backtrace. The stackdump is: 0. Program arguments: /usr/local/bin/clang -cc1 -triple x86_64-unknown-linux-gnu -S -disable-free -main-file-name pVar.cpp -pic-level 2 -mdisable-fp-elim -munwind-tables -target-cpu x86-64 -resource-dir /usr/local/lib/clang/1.1 -Drphp_runtime_EXPORTS -DLLVM_VERSION=2007000 -I/home/corni/dev/rphp/rphp-git/include -I/usr/local/include -fmessage-length 157 -fexceptions -fgnu-runtime -fdiagnostics-show-option -fcolor-diagnostics -o /tmp/cc-1htv2h.s -x c++ /home/corni/dev/rphp/rphp-git/runtime/pVar.cpp 1. parser at end of file 2. /usr/include/boost/multi_index_container.hpp:171:12: instantiating function definition 'boost::multi_index::multi_index_container, class std::allocator >, class rphp::pUStringP, struct boost::detail::variant::void_, struct boost::detail::variant::void_, struct boost::detail::variant::void_, struct boost::detail::variant::void_, struct boost::detail::variant::void_, struct boost::detail::variant::void_, struct boost::detail::variant::void_, struct boost::detail::variant::void_, struct boost::detail::variant::void_, struct boost::detail::variant::void_, struct boost::detail::variant::void_, struct boost::detail::variant::void_, struct boost::detail::variant::void_, struct boost::detail::variant::void_, struct boost::detail::variant::void_, struct boost::detail::variant::void_, struct boost::detail::variant::void_>, key>, struct mpl_::na, struct mpl_::na, struct mpl_::na>, struct boost::multi_index::sequenced >, struct mpl_::na, struct mpl_::na, struct mpl_::na, struct mpl_::na, struct mpl_::na, struct mpl_::na, struct mpl_::na, struct mpl_::na, struct mpl_::na, struct mpl_::na, struct mpl_::na, struct mpl_::na, struct mpl_::na, struct mpl_::na, struct mpl_::na, struct mpl_::na, struct mpl_::na, struct mpl_::na>, class std::allocator >::multi_index_container' 3. /usr/include/boost/multi_index_container.hpp:171:12: LLVM IR generation of declaration 'boost::multi_index::multi_index_container, class std::allocator >, class rphp::pUStringP, struct boost::detail::variant::void_, struct boost::detail::variant::void_, struct boost::detail::variant::void_, struct boost::detail::variant::void_, struct boost::detail::variant::void_, struct boost::detail::variant::void_, struct boost::detail::variant::void_, struct boost::detail::variant::void_, struct boost::detail::variant::void_, struct boost::detail::variant::void_, struct boost::detail::variant::void_, struct boost::detail::variant::void_, struct boost::detail::variant::void_, struct boost::detail::variant::void_, struct boost::detail::variant::void_, struct boost::detail::variant::void_, struct boost::detail::variant::void_>, key>, struct mpl_::na, struct mpl_::na, struct mpl_::na>, struct boost::multi_index::sequenced >, struct mpl_::na, struct mpl_::na, struct mpl_::na, struct mpl_::na, struct mpl_::na, struct mpl_::na, struct mpl_::na, struct mpl_::na, struct mpl_::na, struct mpl_::na, struct mpl_::na, struct mpl_::na, struct mpl_::na, struct mpl_::na, struct mpl_::na, struct mpl_::na, struct mpl_::na, struct mpl_::na>, class std::allocator >::multi_index_container' -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 15 16:48:46 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 15 Feb 2010 16:48:46 -0600 Subject: [LLVMbugs] [Bug 5004] Bootstrap failure "Error: can not do 8 byte pc-relative relocation" In-Reply-To: Message-ID: <201002152248.o1FMmk4T025125@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=5004 Anton Korobeynikov changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED --- Comment #70 from Anton Korobeynikov 2010-02-15 16:48:46 --- So... finally fixed in commit series r96285-96290 -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 15 17:42:42 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 15 Feb 2010 17:42:42 -0600 Subject: [LLVMbugs] [Bug 6314] New: llc -O0 -regalloc=local and yacr2 test failing Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6314 Summary: llc -O0 -regalloc=local and yacr2 test failing Product: new-bugs Version: trunk Platform: Macintosh OS/Version: MacOS X Status: NEW Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: ddunkle at arxan.com CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4235) --> (http://llvm.org/bugs/attachment.cgi?id=4235) the Output.yacr2.link file (input to llc). We are running the MultiSource/Benchmarks/Ptrdist/yacr2/yacr2 test and it generates different output than native gcc at runtime, meaning to us that the test fails. The failing test is compiled to bitcode, then compiled using llc -O0 -regalloc=local (for the PowerPC 32 bit target). When we compiled with llc with the default options (e.g. -O2 and the linearscan register allocator) the test generates the same output as the native gcc version of yacr2, meaning the test passes. So it fails this way: 0) compile using llvm-gcc to bitcode 1) llvm-link Output/assign.bc Output/channel.bc Output/hcg.bc Output/main.bc Output/maze.bc Output/option.bc Output/vcg.bc -f -o Output.yacr2.link 2) llc -O0 -regalloc=local -f Output.yacr2.link -o yacr2.link.s 3) gcc yacr2.link.s -o yacr2.link_p -lm -m32 -arch ppc -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.3 -deadstrip -framework Carbon -framework Cocoa -framework Security and it passes this way: 0) compile using llvm-gcc to bitcode 1) llvm-link Output/assign.bc Output/channel.bc Output/hcg.bc Output/main.bc Output/maze.bc Output/option.bc Output/vcg.bc -f -o Output.yacr2.link 2) llc -f Output.yacr2.link -o yacr2.link.s 3) gcc yacr2.link.s -o yacr2.link_p -lm -m32 -arch ppc -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.3 -deadstrip -framework Carbon -framework Cocoa -framework Security The only difference is in step 2) where the llc is done. To be clear, failure means differences in yacr2 output versus the results produced by a yacr2 compiled directly to native code. This is, we build the native test this way: a) /llvm-2.6-src/projects/test-suite/RunSafely.sh 500 0 /dev/null yacr2.out-link_p ./yacr2.link_p /llvm-2.6- src/projects/testsuite/MultiSource/Benchmarks/Ptrdist/yacr2/input2.in then diff the two output files: b) diff yacr2.out-link_p Output/yacr2.out-nat and see differences between the native gcc compiled version and the bitcode version compiled with llc and "-O0 -regalloc=local". The yacr2.out-nat file resulted from a similar run of the yacr2 compiled this way with gcc: gcc -DTODD -I/llvm-2.6-test/projects/test-suite/MultiSource/Benchmarks/Ptrdist/yacr2 -I/llvm-2.6-src/projects/test-suite/MultiSource/Benchmarks/Ptrdist/yacr2 -I/llvm-2.6-test/include -I/llvm-2.6-src/projects/test-suite/include -I../../../../include -I/llvm-2.6-src/include -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -DNDEBUG -O2 -m32 -arch ppc -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.3 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC -c ... etc. etc. ... g++ -o Output/yacr2.native Output/assign.o Output/channel.o Output/hcg.o Output/main.o Output/maze.o Output/option.o Output/vcg.o -O2 -m32 -arch ppc -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.3 -fno-omit-frame-pointer -fno-strict-aliasing -fPIC We tried use bugpoint in miscompilation/incorrect code generation mode and were unable to figure out the arguments to bugpoint. Therefore, we are attaching the result of the llvm-link (the Output.yacr2.link file from above). -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 15 18:11:35 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 15 Feb 2010 18:11:35 -0600 Subject: [LLVMbugs] [Bug 3068] llvm-gcc cross-compilation for mips fails: unhandled type f32 In-Reply-To: Message-ID: <201002160011.o1G0BZoG029256@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=3068 Bruno Cardoso Lopes changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |DUPLICATE --- Comment #6 from Bruno Cardoso Lopes 2010-02-15 18:11:34 --- I already fixed this and the actual bug blocking the llvm-gcc cross compilation is the bug 6306. *** This bug has been marked as a duplicate of bug 6306 *** -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 15 18:20:07 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 15 Feb 2010 18:20:07 -0600 Subject: [LLVMbugs] [Bug 6235] Alpha Backend fails to compile __powitf2 with internal compiler error. In-Reply-To: Message-ID: <201002160020.o1G0K7RR029673@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6235 Andrew Lenharth changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #4 from Andrew Lenharth 2010-02-15 18:20:06 --- This is a long double problem. long doubles disabled in r96300. This doesn't fix the boot strap though. Multiple return values are the next problem I think. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Mon Feb 15 23:05:41 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Mon, 15 Feb 2010 23:05:41 -0600 Subject: [LLVMbugs] [Bug 6299] LSR assert failure: "Zero allocated in a base register!" In-Reply-To: Message-ID: <201002160505.o1G55f6l010865@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6299 Dan Gohman changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 16 08:22:23 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 16 Feb 2010 08:22:23 -0600 Subject: [LLVMbugs] [Bug 6318] New: Target definitions for FreeBSD/powerpc Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6318 Summary: Target definitions for FreeBSD/powerpc Product: clang Version: trunk Platform: Other OS/Version: FreeBSD Status: NEW Severity: normal Priority: P2 Component: Basic AssignedTo: unassignedclangbugs at nondot.org ReportedBy: whitehorn at wisc.edu CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4241) --> (http://llvm.org/bugs/attachment.cgi?id=4241) Patch to Basic/Targets.cpp The attached patch sets the defines expected on FreeBSD/powerpc, connects FreeBSDTargetInfo on PPC32 and PPC64, and sets size_t to the proper platform value (unsigned int) on FreeBSD/PPC32. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 16 11:14:26 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 16 Feb 2010 11:14:26 -0600 Subject: [LLVMbugs] [Bug 6321] New: Wunused-function false positive Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6321 Summary: Wunused-function false positive Product: clang Version: unspecified Platform: PC OS/Version: All Status: NEW Severity: normal Priority: P2 Component: Semantic Analyzer AssignedTo: unassignedclangbugs at nondot.org ReportedBy: daniel at zuster.org CC: tonic at nondot.org, llvmbugs at cs.uiuc.edu This is a false positive: -- ddunbar at 67-218-110-63:tmp$ cat t.c static void f0(void); void f1(void(*a0)(void)); void f2(void) { f1(f0); } static void f0(void) {} ddunbar at 67-218-110-63:tmp$ clang -c -Wunused-function t.c t.c:4:13: warning: unused function 'f0' [-Wunused-function] static void f0(void) {} ^ 1 diagnostic generated. ddunbar at 67-218-110-63:tmp$ -- -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 16 11:24:35 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 16 Feb 2010 11:24:35 -0600 Subject: [LLVMbugs] [Bug 6111] ARM backend miscompiles indirect call In-Reply-To: Message-ID: <201002161724.o1GHOZmR029135@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6111 Bob Wilson changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #2 from Bob Wilson 2010-02-16 11:24:34 --- Fixed in svn r96360. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 16 12:15:21 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 16 Feb 2010 12:15:21 -0600 Subject: [LLVMbugs] [Bug 6318] Target definitions for FreeBSD/powerpc In-Reply-To: Message-ID: <201002161815.o1GIFLb7031717@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6318 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Chris Lattner 2010-02-16 12:15:20 --- Thanks, applied http://lists.cs.uiuc.edu/pipermail/cfe-commits/Week-of-Mon-20100215/027599.html -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 16 12:51:20 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 16 Feb 2010 12:51:20 -0600 Subject: [LLVMbugs] [Bug 6307] Verifier: Instruction does not dominate all uses In-Reply-To: Message-ID: <201002161851.o1GIpKJK001192@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6307 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |WORKSFORME --- Comment #5 from Chris Lattner 2010-02-16 12:51:19 --- I think this has been fixed on mainline -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 16 16:00:03 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 16 Feb 2010 16:00:03 -0600 Subject: [LLVMbugs] [Bug 6314] llc -O0 -regalloc=local and yacr2 test failing In-Reply-To: Message-ID: <201002162200.o1GM03oF011441@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6314 Dale Johannesen changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #2 from Dale Johannesen 2010-02-16 15:59:54 --- Fixed here. I introduced this regression, sorry. http://llvm.org/viewvc/llvm-project?rev=96399&view=rev -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 16 22:58:16 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 16 Feb 2010 22:58:16 -0600 Subject: [LLVMbugs] [Bug 6321] Wunused-function false positive In-Reply-To: Message-ID: <201002170458.o1H4wGFC032206@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6321 Tanya Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #4 from Tanya Lattner 2010-02-16 22:58:13 --- Committed in r96444. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Tue Feb 16 23:41:50 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Tue, 16 Feb 2010 23:41:50 -0600 Subject: [LLVMbugs] [Bug 5813] msp430 backend: Error: operand out of range In-Reply-To: Message-ID: <201002170541.o1H5foUD001575@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=5813 Anton Korobeynikov changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #2 from Anton Korobeynikov 2010-02-16 23:41:44 --- This was fixed few weeks ago -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Wed Feb 17 04:29:18 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Wed, 17 Feb 2010 04:29:18 -0600 Subject: [LLVMbugs] [Bug 6330] New: Infinite recursion in Sema Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6330 Summary: Infinite recursion in Sema Product: clang Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: Semantic Analyzer AssignedTo: unassignedclangbugs at nondot.org ReportedBy: c.r1 at gmx.de CC: llvmbugs at cs.uiuc.edu Blocks: 6023 Created an attachment (id=4245) --> (http://llvm.org/bugs/attachment.cgi?id=4245) testcase Hi, clang++ enters an infinite recursion until it crashes on the attached testcase, reduced from some boost::asio code. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Wed Feb 17 08:55:32 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Wed, 17 Feb 2010 08:55:32 -0600 Subject: [LLVMbugs] [Bug 6303] MCAssembler uses values outside of enum range In-Reply-To: Message-ID: <201002171455.o1HEtWOO008595@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6303 Duncan Sands changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #5 from Duncan Sands 2010-02-17 08:55:32 --- Fixed here: http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20100215/096384.html -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Wed Feb 17 12:33:30 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Wed, 17 Feb 2010 12:33:30 -0600 Subject: [LLVMbugs] [Bug 6272] Alternative to echo > register In-Reply-To: Message-ID: <201002171833.o1HIXUU0019642@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6272 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Chris Lattner 2010-02-17 12:33:29 --- applied in r96488 -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Wed Feb 17 12:40:31 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Wed, 17 Feb 2010 12:40:31 -0600 Subject: [LLVMbugs] [Bug 6284] IRBuilder CreatePointerCast compilation error In-Reply-To: Message-ID: <201002171840.o1HIeVU0020074@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6284 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Chris Lattner 2010-02-17 12:40:30 --- Fixed in r96489, thanks. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Wed Feb 17 12:42:49 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Wed, 17 Feb 2010 12:42:49 -0600 Subject: [LLVMbugs] [Bug 5100] several ARMv6T2 ops still missing In-Reply-To: Message-ID: <201002171842.o1HIgn1J020290@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=5100 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |LATER --- Comment #1 from Chris Lattner 2010-02-17 12:42:48 --- moved to the ARM readme in r96490 -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Wed Feb 17 13:42:51 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Wed, 17 Feb 2010 13:42:51 -0600 Subject: [LLVMbugs] [Bug 6330] Infinite recursion in Sema In-Reply-To: Message-ID: <201002171942.o1HJgprA023691@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6330 Cornelius changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |DUPLICATE --- Comment #1 from Cornelius 2010-02-17 13:42:50 --- *** This bug has been marked as a duplicate of bug 6141 *** -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Wed Feb 17 13:47:18 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Wed, 17 Feb 2010 13:47:18 -0600 Subject: [LLVMbugs] [Bug 6074] Invalid optimization on x86-32 In-Reply-To: Message-ID: <201002171947.o1HJlI5Q024061@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6074 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID --- Comment #4 from Chris Lattner 2010-02-17 13:47:18 --- You must specify a target layout, otherwise the default will be used which is not correct for your platform. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Wed Feb 17 13:51:48 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Wed, 17 Feb 2010 13:51:48 -0600 Subject: [LLVMbugs] [Bug 6085] code and text do not match In-Reply-To: Message-ID: <201002171951.o1HJpm62024306@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6085 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Chris Lattner 2010-02-17 13:51:44 --- Fixed in r96500, thanks! -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Wed Feb 17 13:55:00 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Wed, 17 Feb 2010 13:55:00 -0600 Subject: [LLVMbugs] [Bug 6092] Kaleidoscope (toy-v3) does optimise, doc-text say not. Unclear! In-Reply-To: Message-ID: <201002171955.o1HJt0m8024496@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6092 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Chris Lattner 2010-02-17 13:54:59 --- Fixed, thanks http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20100215/096407.html -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Wed Feb 17 14:14:58 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Wed, 17 Feb 2010 14:14:58 -0600 Subject: [LLVMbugs] [Bug 6333] New: SIGSEGV in 'X86 DAG->DAG Instruction Selection' Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6333 Summary: SIGSEGV in 'X86 DAG->DAG Instruction Selection' Product: new-bugs Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: kaffeemonster at googlemail.com CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4248) --> (http://llvm.org/bugs/attachment.cgi?id=4248) a crashing bitcode file After a period i could not build clang/llvm (rtti changes) i have the problem that clang (or more correct llvm) crashes on code generation. Today i build myself a fresh clang/llvm again at TOT r96486 and i bugpoint reduced the case, please see the attachment: $ llc bugpoint-reduced-simplified.bc Stack dump: 0. Program arguments: llc bugpoint-reduced-simplified.bc 1. Running pass 'X86 DAG->DAG Instruction Selection' on function '@handle_accept_in' segmentation fault $ Greetings Jan -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Wed Feb 17 18:00:38 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Wed, 17 Feb 2010 18:00:38 -0600 Subject: [LLVMbugs] [Bug 6334] New: x86 cannot select sign_extend_inreg on vector types Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6334 Summary: x86 cannot select sign_extend_inreg on vector types Product: libraries Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: Backend: X86 AssignedTo: unassignedbugs at nondot.org ReportedBy: micah.villmow at amd.com CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4249) --> (http://llvm.org/bugs/attachment.cgi?id=4249) bitcode file that fails execute on x86 mvillmow at caStarscream:~/Source/stg/opencl/drivers/opencl/compiler/llvm/test/AMDIL$ llc -march=x86 async_fail_mod.bc LLVM ERROR: Cannot yet select: 0x923cbe0: v2i32 = sign_extend_inreg 0x923d18c, 0x923cb5c -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Wed Feb 17 18:04:12 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Wed, 17 Feb 2010 18:04:12 -0600 Subject: [LLVMbugs] [Bug 6335] New: TargetLowering:: SimplifyDemandedBits incorrectly handles vector types on Truncate Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6335 Summary: TargetLowering::SimplifyDemandedBits incorrectly handles vector types on Truncate Product: libraries Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: Common Code Generator Code AssignedTo: unassignedbugs at nondot.org ReportedBy: micah.villmow at amd.com CC: llvmbugs at cs.uiuc.edu the code at lines 1394 and 1405 only get value ValueSize in bits instead of the scalar size. This was fixed in the sign extension instructions but not truncate. TargetLowering:1394 APInt TruncMask = NewMask; TruncMask.zext(Op.getOperand(0).getValueSizeInBits()); if (SimplifyDemandedBits(Op.getOperand(0), TruncMask, KnownZero, KnownOne, TLO, Depth+1)) Needs to be: unsigned OperandBitWidth = Op.getOperand(0).getValueType().getScalarType().getSizeInBits(); APInt TruncMask = NewMask; TruncMask.zext(OperandBitWidth); if (SimplifyDemandedBits(Op.getOperand(0), TruncMask, KnownZero, KnownOne, TLO, Depth+1)) Again: if (Op.getOperand(0).getNode()->hasOneUse()) { SDValue In = Op.getOperand(0); unsigned InBitWidth = In.getValueSizeInBits(); switch (In.getOpcode()) { Needs to be: if (Op.getOperand(0).getNode()->hasOneUse()) { SDValue In = Op.getOperand(0); unsigned InBitWidth = In.getValueType().getScalarType().getSizeInBits(); switch (In.getOpcode()) { -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Wed Feb 17 19:04:32 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Wed, 17 Feb 2010 19:04:32 -0600 Subject: [LLVMbugs] [Bug 6336] New: SelectionDAG does not handle scalar second operand to sign_extend_inreg correctly Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6336 Summary: SelectionDAG does not handle scalar second operand to sign_extend_inreg correctly Product: libraries Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: Common Code Generator Code AssignedTo: unassignedbugs at nondot.org ReportedBy: micah.villmow at amd.com CC: llvmbugs at cs.uiuc.edu In SelectionDAG.cpp::UnrollVectorOp the cases for SIGN_EXTEND_INREG and FP_ROUND_INREG incorrectly assume that the second operand is always a vector and uses the API function getVectorElementType(). The correct function call to use is getScalarType so that LLVM does not assert when a scalar is used as the extension value for a vector type. Old Code: case ISD::SIGN_EXTEND_INREG: case ISD::FP_ROUND_INREG: { EVT ExtVT = dyn_cast(Operands[1])->getVT().getVectorElementType(); Scalars.push_back(getNode(N->getOpcode(), dl, EltVT, Operands[0], getValueType(ExtVT))); } New Code: case ISD::SIGN_EXTEND_INREG: case ISD::FP_ROUND_INREG: { EVT ExtVT = dyn_cast(Operands[1])->getVT().getScalarType(); Scalars.push_back(getNode(N->getOpcode(), dl, EltVT, Operands[0], getValueType(ExtVT))); } -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Wed Feb 17 19:14:38 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Wed, 17 Feb 2010 19:14:38 -0600 Subject: [LLVMbugs] [Bug 6337] New: SelectionDAG.cpp has opporunity for code refactoring Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6337 Summary: SelectionDAG.cpp has opporunity for code refactoring Product: libraries Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: Common Code Generator Code AssignedTo: unassignedbugs at nondot.org ReportedBy: micah.villmow at amd.com CC: llvmbugs at cs.uiuc.edu There are many locations in SelectionDAG that should be using the getScalarType() function instead of using the ?: operator. 849c849 < EVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT; --- > EVT EltVT = VT.getScalarType(); 856c856 < EVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT; --- > EVT EltVT = VT.getScalarType(); 870c870 < EVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT; --- > EVT EltVT = VT.getScalarType(); 912,913c912 < EVT EltVT = < VT.isVector() ? VT.getVectorElementType() : VT; --- > EVT EltVT = VT.getScalarType(); 946,947c945 < EVT EltVT = < VT.isVector() ? VT.getVectorElementType() : VT; --- > EVT EltVT = VT.getScalarType(); 3034,3035c3032 < unsigned NumBits = VT.isVector() ? < VT.getVectorElementType().getSizeInBits() : VT.getSizeInBits(); --- > unsigned NumBits = VT.getScalarType(); -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Wed Feb 17 20:01:45 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Wed, 17 Feb 2010 20:01:45 -0600 Subject: [LLVMbugs] [Bug 5253] [GNU Extension] Redefinition of "extern inline" function In-Reply-To: Message-ID: <201002180201.o1I21jN8013572@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=5253 Charles Davis changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #3 from Charles Davis 2010-02-17 20:01:45 --- I just checked the fix in now. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Wed Feb 17 20:23:51 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Wed, 17 Feb 2010 20:23:51 -0600 Subject: [LLVMbugs] [Bug 6338] New: LegalizeDag: ExpandVectorBuildThroughStack incorrectly compares value types causing getTruncStore to assert . Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6338 Summary: LegalizeDag:ExpandVectorBuildThroughStack incorrectly compares value types causing getTruncStore to assert. Product: libraries Version: trunk Platform: PC OS/Version: Windows NT Status: NEW Severity: normal Priority: P2 Component: Common Code Generator Code AssignedTo: unassignedbugs at nondot.org ReportedBy: micah.villmow at amd.com CC: llvmbugs at cs.uiuc.edu ExpandVectorBuildThroughStack is checking when to truncate or just to store. For example, @ line 1539 there is a check if (EltVT.bitsLT(OpVT)) which checks if the bitsize of the value type operand is larger than the bitsize of the element. This is incorrect and it needs to compare the result of EltVT.bitsLT(OpVT.getScalarType()). In this specific example, the output of Concat_vector is a v4i32 and the input arguments are 2 v2i32. So, looking at this section of code: EVT VT = Node->getValueType(0); EVT OpVT = Node->getOperand(0).getValueType(); EVT EltVT = VT.getVectorElementType(); And this instruction V4i32 = concat_vector v2i32 v2i32 VT = v4i32 OpVT = v2i32 EltVT = i32 OpVT.getTypeSizeInBits() = 64 EltVT.getTypeSizeInBits() = 32 The only time the if conditional will return false is when the first operand is a scalar assuming the base types are equal. In every other case it will return true. This is wrong. This is why it is wrong. The getTruncStore function in argument three gets Node->getOperand(i) and the sevent argument gets EltVT get mapped eventually to Val/SVT respectively. In the assert(SVT.getScalarType().bitsLT(VT.getScalarType()) && ???); SVT is a v2i32, scalar type returns an i32 VT is a i32, scalar type returns itself, an i32, so we assert. We have contradicting conditionals. Either the assert is wrong or the condition to call getTruncStore is wrong. I assert that the conditional to call getTruncStore is incorrect. The correct condition should be If (EltVT.bitsLT(Node->getOperand(i).getValueType().getScalarType())) -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Wed Feb 17 23:42:49 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Wed, 17 Feb 2010 23:42:49 -0600 Subject: [LLVMbugs] [Bug 6339] New: 'Canonicalize Induction Variables' pass crashes on attached input Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6339 Summary: 'Canonicalize Induction Variables' pass crashes on attached input Product: libraries Version: trunk Platform: PC OS/Version: All Status: NEW Severity: normal Priority: P2 Component: Loop Optimizer AssignedTo: unassignedbugs at nondot.org ReportedBy: cdavis at mymail.mines.edu CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4250) --> (http://llvm.org/bugs/attachment.cgi?id=4250) Input that causes crash (out of memory) The attached input brings down the loop optimizer like so: $ opt bugpoint-reduced-simplified.bc -inline -scalarrepl -loop-rotate -instcombine -scalar-evolution -indvars -loop-deletion -verify opt(36546) malloc: *** mmap(size=18446744073709543424) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug terminate called after throwing an instance of 'std::bad_alloc' what(): std::bad_alloc 0 opt 0x0000000100435075 PrintStackTrace(void*) + 38 1 opt 0x000000010043556c SignalHandler(int) + 336 2 libSystem.B.dylib 0x00007fff82a9aeaa _sigtramp + 26 3 libSystem.B.dylib 0x00007fff5fbfda60 _sigtramp + 3709217744 4 libstdc++.6.dylib 0x00007fff865ab5d2 __tcf_0 + 0 5 libstdc++.6.dylib 0x00007fff865a9ae1 __cxxabiv1::__terminate(void (*)()) + 11 6 libstdc++.6.dylib 0x00007fff865a9b16 __cxxabiv1::__unexpected(void (*)()) + 0 7 libstdc++.6.dylib 0x00007fff865a9bfc __gxx_exception_cleanup(_Unwind_Reason_Code, _Unwind_Exception*) + 0 8 libstdc++.6.dylib 0x00007fff865a9efb operator new(unsigned long) + 87 9 opt 0x000000010005629c llvm::SmallVectorBase::grow_pod(unsigned long, unsigned long) + 76 10 opt 0x000000010027d852 llvm::SmallVectorTemplateBase::grow(unsigned long) + 42 11 opt 0x00000001000eee6e void llvm::SmallVectorImpl::append<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >) + 108 12 opt 0x00000001000eeee3 llvm::SmallVector::SmallVector<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >) + 51 13 opt 0x00000001000eef73 llvm::LoopBase::getExitingBlocks(llvm::SmallVectorImpl&) const + 87 14 opt 0x00000001002b2e15 llvm::ScalarEvolution::ComputeBackedgeTakenCount(llvm::Loop const*) + 67 15 opt 0x00000001002b3115 llvm::ScalarEvolution::getBackedgeTakenInfo(llvm::Loop const*) + 231 16 opt 0x00000001002b7ceb llvm::ScalarEvolution::getBackedgeTakenCount(llvm::Loop const*) + 29 17 opt 0x00000001002b89b5 llvm::ScalarEvolution::computeSCEVAtScope(llvm::SCEV const*, llvm::Loop const*) + 2573 18 opt 0x00000001002b8d50 llvm::ScalarEvolution::getSCEVAtScope(llvm::SCEV const*, llvm::Loop const*) + 214 19 opt 0x00000001002b93f5 llvm::ScalarEvolution::getSCEVAtScope(llvm::Value*, llvm::Loop const*) + 49 20 opt 0x00000001000da225 (anonymous namespace)::IndVarSimplify::RewriteLoopExitValues(llvm::Loop*, llvm::SCEV const*, llvm::SCEVExpander&) + 593 21 opt 0x00000001000daa11 (anonymous namespace)::IndVarSimplify::runOnLoop(llvm::Loop*, llvm::LPPassManager&) + 279 22 opt 0x000000010026cc13 llvm::LPPassManager::runOnFunction(llvm::Function&) + 875 23 opt 0x00000001003c6c6e llvm::FPPassManager::runOnFunction(llvm::Function&) + 336 24 opt 0x0000000100224414 (anonymous namespace)::CGPassManager::RunPassOnSCC(llvm::Pass*, std::vector >&, llvm::CallGraph&, bool&) + 494 25 opt 0x0000000100224733 (anonymous namespace)::CGPassManager::runOnModule(llvm::Module&) + 563 26 opt 0x00000001003c695a llvm::MPPassManager::runOnModule(llvm::Module&) + 372 27 opt 0x00000001003c87ef llvm::PassManagerImpl::run(llvm::Module&) + 111 28 opt 0x00000001003c8851 llvm::PassManager::run(llvm::Module&) + 33 29 opt 0x00000001000651b7 main + 3082 30 opt 0x000000010005b138 start + 52 Stack dump: 0. Program arguments: opt bugpoint-reduced-simplified.bc -inline -scalarrepl -loop-rotate -instcombine -scalar-evolution -indvars -loop-deletion -verify 1. Running pass 'CallGraph Pass Manager' on module 'bugpoint-reduced-simplified.bc'. 2. Running pass 'Loop Pass Manager' on function '@CRYPT_FormatAltNameEntry' 3. Running pass 'Canonicalize Induction Variables' on basic block '%for.body' Abort trap -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Thu Feb 18 03:35:42 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Thu, 18 Feb 2010 03:35:42 -0600 Subject: [LLVMbugs] [Bug 6340] New: Bug with empty C99 structure initialization Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6340 Summary: Bug with empty C99 structure initialization Product: new-bugs Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: quickslyver at free.fr CC: llvmbugs at cs.uiuc.edu I don't known if it's a clang or llvm bug: #cat bug-struct-c99.c struct E {}; struct G { int I; struct E J; int K; }; struct G k = { .J = {}, 1 }; int main (void) { if (k.I || k.K != 1 ) abort (); exit (0); } #clang bug-struct-c99.c Abort The bug in the generated assembly is here: #clang bug-struct-c99.c -S -o - [...] k: .long 0 .zero 1 .long 1 .size k, 8 it should be: k: .long 0 .long 1 .size k, 8 -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Thu Feb 18 14:02:11 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Thu, 18 Feb 2010 14:02:11 -0600 Subject: [LLVMbugs] [Bug 6345] New: [GNU Extension] Clang differs from GCC on anonymous structs Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6345 Summary: [GNU Extension] Clang differs from GCC on anonymous structs Product: clang Version: trunk Platform: PC OS/Version: All Status: NEW Severity: normal Priority: P2 Component: Semantic Analyzer AssignedTo: unassignedclangbugs at nondot.org ReportedBy: cdavis at mymail.mines.edu CC: llvmbugs at cs.uiuc.edu Consider the following: union foo { struct { union { struct {void* bar[4];}; } u; struct { union {int baz;} u; }; } s; }; int f(void) { union foo foo; foo.s.u.bar[2] = (void*)0; foo.s.u.baz = 0; } When GCC 4.2 is run on this example, it produces the following: foo.c: In function ???f???: foo.c:17: error: ???union ??? has no member named ???baz??? but when Clang is run on the example, it produces this: test-su.c:7:23: error: member of anonymous struct redeclares 'u' union { int baz; } u; ^ test-su.c:5:5: note: previous declaration is here } u; ^ test-su.c:16:10: error: no member named 'bar' in 'union foo::'; did you mean 'baz'? foo.s.u.bar[2] = (void*)0; ^~~ baz test-su.c:7:16: note: 'baz' declared here union { int baz; } u; ^ test-su.c:16:13: error: subscripted value is not an array, pointer, or vector foo.s.u.bar[2] = (void*)0; ~~~~~~~~~~~^~ 5 diagnostics generated. It does not matter if Clang is in C99 or C89 mode (with GNU extensions, of course). So there's two differences between clang and GCC: - Clang complains if a member is redeclared in an anonymous struct. GCC simply discards the second declaration. - Interestingly, clang then hides the first definition, using only the second one. GCC simply discards the second one. I don't know if you want to fix this, but the union construct has appeared in the wild, specifically in Wine, and they're loath to change it. After all, it's worked well for them for the past 10 years with GCC. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Thu Feb 18 16:12:20 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Thu, 18 Feb 2010 16:12:20 -0600 Subject: [LLVMbugs] [Bug 6347] New: [X86] : wrong code generated for shufflevector Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6347 Summary: [X86] : wrong code generated for shufflevector Product: new-bugs Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: critical Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: jgu222 at gmail.com CC: llvmbugs at cs.uiuc.edu Reproduce as follows: ------------------------ % tar -xvzf vshuffle.tarz % llvm-gcc l_test.c -c % llvm-as l_k2.ll % opt -O2 l_k2.bc -o optim.bc % cp l_k2.bc nonopt.bc % llc optim.bc % llc nonopt.bc % gcc l_test.o optim.s -o optim % gcc l_test.o nonopt.s -o nonopt % ./nonopt Pass %/optim Fail The failed one went through opt. However, the optim.bc looks correct. And optim.bc has shufflevector and nonopt.bc does not, and I think shufflevector causes the problem. l_k2.ll is equivalent to k2.c (in the tarball), so it is easy for you to see what it is doing. ----------------------- llvm: llvm version 2.7svn (DEBUG build, 2/18/2010, i386-pc-linux-gnu) revision 96603 llvm-gcc: gcc vesion 4.2.1 (Based on Apple Inc. build 5658) My system is ubuntu 9.10 32bit, running on intel pc. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Thu Feb 18 16:32:01 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Thu, 18 Feb 2010 16:32:01 -0600 Subject: [LLVMbugs] [Bug 6348] New: wrong code bug in msp430 backend Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6348 Summary: wrong code bug in msp430 backend Product: new-bugs Version: trunk Platform: PC OS/Version: Linux Status: NEW Keywords: miscompilation Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: pagariya at cs.utah.edu CC: llvmbugs at cs.uiuc.edu, regehr at cs.utah.edu Test case: #include uint8_t g_15 = -1L; uint32_t bar() { g_15 = 1; return 0xaa; } int main() { uint16_t l_5 = 0x1234; uint16_t l_14[2][2] = {{-1,-1}, {-1,-1}}; uint32_t l_30 = 0; l_30 = (((!l_5) & bar()) != l_14[1][1]); /* miscompiled */ return l_30; } Description: The value stored in l_30 should be 1. At -O0, the value is 0. The buggy code is when the l_14[1][1] is being compared with value of expression ((!l_5) & bar()). Command line options: pagariya at aleph:~/tmp$ clang -ccc-host-triple msp430-elf -I/home/pagariya/res-pagariya/llvm-msp430/msp430/include -nostdinc -v -O0 -S test.c clang version 1.1 (trunk 170) Target: msp430-elf- Thread model: posix "/uusoc/facility/res/embed/users/pagariya/llvm-msp430/bin/clang" -cc1 -triple msp430-elf- -S -disable-free -main-file-name test.c -mrelocation-model static -mdisable-fp-elim -v -nostdinc -resource-dir /uusoc/facility/res/embed/users/pagariya/llvm-msp430/lib/clang/1.1 -I/home/pagariya/res-pagariya/llvm-msp430/msp430/include -O0 -fmessage-length 102 -fgnu-runtime -fdiagnostics-show-option -fcolor-diagnostics -o test.s -x c test.c clang -cc1 version 1.1 based upon llvm 2.7svn hosted on i386-pc-linux-gnu #include "..." search starts here: #include <...> search starts here: /home/pagariya/res-pagariya/llvm-msp430/msp430/include /uusoc/facility/res/embed/users/pagariya/llvm-msp430/lib/clang/1.1/include pagariya at aleph:~/tmp$ clang -ccc-host-triple msp430-elf -L/home/pagariya/res-pagariya/llvm-msp430/lib/msp430 -L/home/pagariya/res-pagariya/llvm-msp430/msp430/lib -L/home/pagariya/res-pagariya/llvm-msp430/lib/gcc-lib/msp430/3.2.3 -Wl,-m,msp430x1611 -o test.elf /home/pagariya/res-pagariya/llvm-msp430/msp430/lib/crt430x1611.o test.s -lgcc -v clang version 1.1 (trunk 170) Target: msp430-elf- Thread model: posix "/uusoc/facility/res/embed/users/pagariya/llvm-msp430/bin/msp430-as" -o /tmp/cc-dBq7CS.o test.s "/uusoc/facility/res/embed/users/pagariya/llvm-msp430/bin/msp430-ld" -o test.elf -L/home/pagariya/res-pagariya/llvm-msp430/lib/msp430 -L/home/pagariya/res-pagariya/llvm-msp430/msp430/lib -L/home/pagariya/res-pagariya/llvm-msp430/lib/gcc-lib/msp430/3.2.3 -m msp430x1611 /home/pagariya/res-pagariya/llvm-msp430/msp430/lib/crt430x1611.o /tmp/cc-dBq7CS.o -lgcc -L../lib/ -lcompiler_rt.Generic -lc -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Thu Feb 18 17:27:02 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Thu, 18 Feb 2010 17:27:02 -0600 Subject: [LLVMbugs] [Bug 6339] 'Canonicalize Induction Variables' pass crashes on attached input In-Reply-To: Message-ID: <201002182327.o1INR2BB023035@zion.cs.uiuc.edu> http://llvm.org/bugs/show_bug.cgi?id=6339 Dan Gohman changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Dan Gohman 2010-02-18 17:26:56 --- Fixed in r96626. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Thu Feb 18 17:54:27 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Thu, 18 Feb 2010 17:54:27 -0600 Subject: [LLVMbugs] [Bug 6349] New: miscompilation of volatile variables in msp430 backend Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6349 Summary: miscompilation of volatile variables in msp430 backend Product: new-bugs Version: trunk Platform: PC OS/Version: Linux Status: NEW Keywords: miscompilation Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: pagariya at cs.utah.edu CC: llvmbugs at cs.uiuc.edu, regehr at cs.utah.edu Test case: #include volatile uint32_t sink_ = 0; volatile int32_t g_4[2]; int main(void) { int i; for (i = 0; i < 2; i++) g_4[i] = 0x8B72FD49L; for (i = 0; i < 2; i++) sink_ = g_4[i]; return 0; } g_4[1] is not written in the first for loop. Likewise, it is not read in the second for loop. Both these operations are necessary since g_4 and sink_ are volatile variables. This miscompilation occurs only at -O0, -O1 and -Os. pagariya at aleph:~/randprog-testing/main/tmp$ clang -ccc-host-triple msp430-elf -I/home/pagariya/res-pagariya/llvm-msp430/msp430/include -nostdinc -v -O0 -S test.c clang version 1.1 (trunk 170) Target: msp430-elf- Thread model: posix "/uusoc/facility/res/embed/users/pagariya/llvm-msp430/bin/clang" -cc1 -triple msp430-elf- -S -disable-free -main-file-name test.c -mrelocation-model static -mdisable-fp-elim -v -nostdinc -resource-dir /uusoc/facility/res/embed/users/pagariya/llvm-msp430/lib/clang/1.1 -I/home/pagariya/res-pagariya/llvm-msp430/msp430/include -O0 -fmessage-length 102 -fgnu-runtime -fdiagnostics-show-option -fcolor-diagnostics -o test.s -x c test.c clang -cc1 version 1.1 based upon llvm 2.7svn hosted on i386-pc-linux-gnu #include "..." search starts here: #include <...> search starts here: /home/pagariya/res-pagariya/llvm-msp430/msp430/include /uusoc/facility/res/embed/users/pagariya/llvm-msp430/lib/clang/1.1/include End of search list. pagariya at aleph:~/randprog-testing/main/tmp$ clang -ccc-host-triple msp430-elf -L/home/pagariya/res-pagariya/llvm-msp430/lib/msp430 -L/home/pagariya/res-pagariya/llvm-msp430/msp430/lib -L/home/pagariya/res-pagariya/llvm-msp430/lib/gcc-lib/msp430/3.2.3 -Wl,-m,msp430x1611 -o test.elf /home/pagariya/res-pagariya/llvm-msp430/msp430/lib/crt430x1611.o test.s -lgcc -v clang version 1.1 (trunk 170) Target: msp430-elf- Thread model: posix "/uusoc/facility/res/embed/users/pagariya/llvm-msp430/bin/msp430-as" -o /tmp/cc-mfSjNK.o test.s "/uusoc/facility/res/embed/users/pagariya/llvm-msp430/bin/msp430-ld" -o test.elf -L/home/pagariya/res-pagariya/llvm-msp430/lib/msp430 -L/home/pagariya/res-pagariya/llvm-msp430/msp430/lib -L/home/pagariya/res-pagariya/llvm-msp430/lib/gcc-lib/msp430/3.2.3 -m msp430x1611 /home/pagariya/res-pagariya/llvm-msp430/msp430/lib/crt430x1611.o /tmp/cc-mfSjNK.o -lgcc -L../lib/ -lcompiler_rt.Generic -lc -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Fri Feb 19 08:42:05 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Fri, 19 Feb 2010 08:42:05 -0600 Subject: [LLVMbugs] [Bug 6352] New: Valgrind reporting leak in ARM backend and other code. Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6352 Summary: Valgrind reporting leak in ARM backend and other code. Product: new-bugs Version: unspecified Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: mwb.cde at googlemail.com CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4255) --> (http://llvm.org/bugs/attachment.cgi?id=4255) Valgrind log Valgrind is reporting memory leaks, some of which are triggered by the ARM backend. One of the leaks is due to frame indexes being lost, but the code suggests that these should be managed by the LLVM infrastructure. Test case: llvm/test/CodeGen/ARM/2009-02-27-SpillerBug.ll Run valgrind --leak-check=full bin/llc -regalloc=local -march=arm 2009-02-27-SpillerBug.ll Log file is attached. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Fri Feb 19 10:47:47 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Fri, 19 Feb 2010 10:47:47 -0600 Subject: [LLVMbugs] [Bug 6355] New: llvm-ld exponentially slow Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6355 Summary: llvm-ld exponentially slow Product: tools Version: 2.6 Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: llvm-ld AssignedTo: unassignedbugs at nondot.org ReportedBy: jirislaby at gmail.com CC: llvmbugs at cs.uiuc.edu The more input llvm bitcode files are added to the command-line, the slowe the linking is. But not linearly, exponentially. perf output for 200 files: 26.81% llvm-ld /usr/bin/llvm-ld [.] 0x0000000024189c 15.73% llvm-ld /usr/bin/llvm-ld [.] llvm::SmallPtrSetImpl::insert_imp(void const*) 11.07% llvm-ld /usr/bin/llvm-ld [.] llvm::SmallPtrSetImpl::FindBucketFor(void const*) const 9.24% llvm-ld /usr/lib64/libstdc++.so.6.0.14 [.] std::_Rb_tree_increment(std::_Rb_tree_node_base*) 400 files: 33.41% llvm-ld /usr/lib64/libstdc++.so.6.0.14 [.] std::_Rb_tree_increment(std::_Rb_tree_node_base*) 17.70% llvm-ld /usr/bin/llvm-ld [.] 0x000000002418f4 12.57% llvm-ld /usr/bin/llvm-ld [.] llvm::ConstantExpr::destroyConstant() 8.78% llvm-ld /usr/bin/llvm-ld [.] llvm::SmallPtrSetImpl::insert_imp(void const*) 7.21% llvm-ld /usr/bin/llvm-ld [.] llvm::SmallPtrSetImpl::FindBucketFor(void const*) const 800 files: 53.46% llvm-ld /usr/lib64/libstdc++.so.6.0.14 [.] std::_Rb_tree_increment(std::_Rb_tree_node_base*) 18.63% llvm-ld /usr/bin/llvm-ld [.] llvm::ConstantExpr::destroyConstant() 9.56% llvm-ld /usr/bin/llvm-ld [.] 0x00000000181a70 4.19% llvm-ld /usr/bin/llvm-ld [.] llvm::SmallPtrSetImpl::insert_imp(void const*) 3.67% llvm-ld /usr/bin/llvm-ld [.] llvm::SmallPtrSetImpl::FindBucketFor(void const*) const 2.45% llvm-ld /usr/bin/llvm-ld [.] llvm::PATypeHolder::get() const So the STL tree implementation seems to be a bottleneck (or its inappropriate use). 2000 files are linked in approx. 5 hours here and time-passes shown by llvm-link are in the magnitude of seconds... For comparison, 800 files: ===-------------------------------------------------------------------------=== ... Pass execution timing report ... ===-------------------------------------------------------------------------=== Total Execution Time: 1.3800 seconds (1.3902 wall clock) ---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name --- 0.8600 ( 64.7%) 0.0280 ( 53.8%) 0.8880 ( 64.3%) 0.8922 ( 64.1%) Module Verifier 0.4240 ( 31.9%) 0.0200 ( 38.4%) 0.4440 ( 32.1%) 0.4342 ( 31.2%) Dominator Tree Construction 0.0440 ( 3.3%) 0.0039 ( 7.6%) 0.0480 ( 3.4%) 0.0637 ( 4.5%) Preliminary module verification 1.3280 (100.0%) 0.0520 (100.0%) 1.3800 (100.0%) 1.3902 (100.0%) TOTAL -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at cs.uiuc.edu Fri Feb 19 12:37:59 2010 From: bugzilla-daemon at cs.uiuc.edu (bugzilla-daemon at cs.uiuc.edu) Date: Fri, 19 Feb 2010 12:37:59 -0600 Subject: [LLVMbugs] [Bug 6356] New: Violated assertion "unsigned range includes negative?" Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6356 Summary: Violated assertion "unsigned range includes negative?" Product: clang Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: major Priority: P2 Component: Semantic Analyzer AssignedTo: unassignedclangbugs at nondot.org ReportedBy: bagnara at cs.unipr.it CC: llvmbugs at cs.uiuc.edu This is a reduced testcase coming from the Linux kernel: $ cat bug8.c void foo(unsigned int ui) { long l = 2; (ui -= l) < 3; } $ gcc -c bug8.c $ icc -c bug8.c $ clang -c -m64 bug8.c clang: SemaChecking.cpp:2030: void clang::Sema::CheckSignCompare(clang::Expr*, clang::Expr*, clang::SourceLocation, const clang::PartialDiagnostic&, bool): Assertion `unsignedRange.NonNegative && "unsigned range includes negative?"' failed. 0 clang 0x00000000012f2d9a 1 clang 0x00000000012f2c13 2 libpthread.so.0 0x0000003b87e0f0f0 3 libc.so.6 0x0000003b872326c5 gsignal + 53 4 libc.so.6 0x0000003b87233ea5 abort + 373 5 libc.so.6 0x0000003b8722b7b5 __assert_fail + 245 6 clang 0x000000000067eb8b 7 clang 0x000000000071ecb8 8 clang 0x00000000007233ad 9 clang 0x000000000072444a 10 clang 0x0000000000724256 11 clang 0x00000000009f55f8 12 clang 0x00000000009f47b5 13 clang 0x00000000009f4093 14 clang 0x00000000009ce387 15 clang 0x00000000009cff92 16 clang 0x00000000009d504d 17 clang 0x00000000009dad4c 18 clang 0x00000000009dfe65 19 clang 0x00000000009da841 20 clang 0x00000000009da8ab 21 clang 0x00000000009da203 22 clang 0x00000000009d9ad1 23 clang 0x0000000000665a41 24 clang 0x000000000042dbfe 25 clang 0x000000000042d88c 26 clang 0x0000000000417e42 27 clang 0x0000000000407ef9 28 clang 0x000000000040c600 main + 244 29 libc.so.6 0x0000003b8721eb1d __libc_start_main + 253 30 clang 0x0000000000406b19 Stack dump: 0. Program arguments: /home/roberto/llvm/Debug/bin/clang -cc1 -triple x86_64-unknown-linux-gnu -S -disable-free -main-file-name bug8.c -mrelocation-model static -mdisable-fp-elim -munwind-tables -target-cpu x86-64 -resource-dir /home/roberto/llvm/Debug/lib/clang/1.1 -fmessage-length 80 -fgnu-runtime -fdiagnostics-show-option -fcolor-diagnostics -o /tmp/cc-hxSyGu.s -x c bug8.c 1. bug8.c:3:16: current parser token ';' 2. bug8.c:1:27: parsing function body 'foo' 3. bug8.c:1:27: in compound statement ('{}') clang: error: compiler command failed due to signal 6 (use -v to see invocation) $ -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Sat Feb 20 22:23:24 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sat, 20 Feb 2010 22:23:24 -0600 (CST) Subject: [LLVMbugs] [Bug 6357] New: Improve source-location information for DeclarationNames Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6357 Summary: Improve source-location information for DeclarationNames Product: clang Version: trunk Platform: PC OS/Version: All Status: NEW Severity: enhancement Priority: P5 Component: C++ AssignedTo: unassignedclangbugs at nondot.org ReportedBy: dgregor at apple.com CC: dgregor at apple.com Estimated Hours: 0.0 We need a DeclarationNameLoc (or something like it) to store complete source-location information for non-identifier names, e.g., the locations of the '+' token in operator + the precise type source information for operator const T * and for ~Foo etc. This is important for source fidelity, good diagnostics during instantiation, and to implement all of the nonsense in C++ [basic.lookup.classref] with looking into different scopes for the same name, then rectifying the results. The current FirstQualifierInScope hack doesn't capture all of the information we need in a form that works through template instantiation. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 01:31:16 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 01:31:16 -0600 (CST) Subject: [LLVMbugs] [Bug 6113] Clang fails to accept a redeclaration of a class after a using declaration In-Reply-To: References: Message-ID: <20100221073116.44E4C2A6C11A@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6113 Chandler Carruth changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|FIXED | --- Comment #7 from Chandler Carruth 2010-02-21 01:31:15 CST --- I have no idea why I marked this as fixed. =[ Bugzilla 1, me 0. FYI, Lawrence seems unconvinced, but I've not succeeded at getting him to jump on this bug yet. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 01:45:40 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 01:45:40 -0600 (CST) Subject: [LLVMbugs] [Bug 6107] clang is confused by out-of-line definition of inner class In-Reply-To: References: Message-ID: <20100221074540.6C89D2A6C11A@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6107 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|FIXED | --- Comment #4 from Chris Lattner 2010-02-21 01:45:40 CST --- just a test -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 01:45:53 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 01:45:53 -0600 (CST) Subject: [LLVMbugs] [Bug 6107] clang is confused by out-of-line definition of inner class In-Reply-To: References: Message-ID: <20100221074553.DF4A52A6C11A@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6107 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution| |FIXED --- Comment #5 from Chris Lattner 2010-02-21 01:45:53 CST --- Chandler fixed this. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 01:47:29 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 01:47:29 -0600 (CST) Subject: [LLVMbugs] [Bug 6141] Crash in DeduceTemplateArguments on complex templates In-Reply-To: References: Message-ID: <20100221074729.623BC2A6C0D1@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6141 --- Comment #3 from Douglas Gregor 2010-02-21 01:47:28 CST --- (In reply to comment #1) > Reduced test case: > -- > ddunbar at giles:tmp$ cat t.cpp > template class Handle { > template inline Handle(Handle that) { } > }; > template class Local : public Handle { }; > struct String { static Local New(); }; > void f0(Handle name); > void f1() { f0(String::New()); } > ddunbar at giles:tmp$ clang -c t.cpp > clang: error: compiler command failed due to signal 11 (use -v to see > invocation) > ddunbar at giles:tmp$ > -- > > My guess is infinite recursion. Awesome reduction, thanks! I have the fix locally; will commit when I can. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 02:47:52 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 02:47:52 -0600 (CST) Subject: [LLVMbugs] [Bug 6358] New: Clang rejects an out-of-line destructor declaration with the same name as a global function with horrible diagnostic Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6358 Summary: Clang rejects an out-of-line destructor declaration with the same name as a global function with horrible diagnostic Product: clang Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: enhancement Priority: P5 Component: C++ AssignedTo: unassignedclangbugs at nondot.org ReportedBy: chandlerc at gmail.com CC: dgregor at apple.com Estimated Hours: 0.0 % cat t.cc void Foo(); struct Foo { virtual ~Foo(); }; Foo::~Foo() { } void Foo() { } % ./bin/clang++ -fsyntax-only t.cc t.cc:5:7: error: expected the class name after '~' to name a destructor Foo::~Foo() { } ^ 1 diagnostic generated. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 03:10:49 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 03:10:49 -0600 (CST) Subject: [LLVMbugs] [Bug 6358] Clang rejects an out-of-line destructor declaration with the same name as a global function with horrible diagnostic In-Reply-To: References: Message-ID: <20100221091049.105C32A6C11A@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6358 Chandler Carruth changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |zhanyong.wan at gmail.com -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 03:24:32 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 03:24:32 -0600 (CST) Subject: [LLVMbugs] [Bug 6359] New: Clang rejects out-of-line destructors for classes which are typedef'ed to themselves Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6359 Summary: Clang rejects out-of-line destructors for classes which are typedef'ed to themselves Product: clang Version: trunk Platform: PC OS/Version: All Status: NEW Severity: minor Priority: P5 Component: C++ AssignedTo: unassignedclangbugs at nondot.org ReportedBy: chandlerc at gmail.com CC: dgregor at apple.com, zhanyong.wan at gmail.com Estimated Hours: 0.0 Despite the prohibition on typedef names being used for destructors, I think the rules allowing you to typedef something to itself mean we should accept this. % cat t.cc struct S; typedef struct S S; struct S { ~S(); }; S::~S() { } % ./bin/clang++ -fsyntax-only t.cc t.cc:4:4: error: destructor cannot be declared using a typedef 'S' (aka 'struct S') of the class name S::~S() { } ^ 1 diagnostic generated. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 03:55:00 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 03:55:00 -0600 (CST) Subject: [LLVMbugs] [Bug 6360] New: JIT->DisableLazyCompilation(false) triggers assertion in JITEmitter.cpp:304 Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6360 Summary: JIT->DisableLazyCompilation(false) triggers assertion in JITEmitter.cpp:304 Product: libraries Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P5 Component: Target-Independent JIT AssignedTo: unassignedbugs at nondot.org ReportedBy: Dr.Graef at t-online.de CC: llvmbugs at cs.uiuc.edu Estimated Hours: 0.0 Created an attachment (id=4258) --> (http://www.llvm.org/bugs/attachment.cgi?id=4258) gdb backtrace for the failed assertion Reenabling lazy JIT compilation in TOT breaks the Pure interpreter, which works ok with all LLVM versions from 2.3 to 2.6. The symptom is a failed assertion at JITEmitter.cpp:304 after the compilation callback gets invoked on a stub. I can reproduce this reliably on a x86_64 Linux system running LLVM r96466 and Pure r3087. To reproduce, you'll need the svn version of the Pure interpreter (http://code.google.com/p/pure-lang/source/checkout). At line 173 in interpreter.cc you'll find: '#if LAZY_JIT_HACK'. Change that to '#if 1', so that lazy JITing is enabled. Then compile and install Pure as usual (./configure && make && make install). Run it (just type 'pure' in the shell). Enter the following at the interpreter prompt: > let foo = \x->x+1; > foo 99; This yields: pure: JITEmitter.cpp:304: ::JITResolver*::StubToResolverMapTy::getResolverFromStub(void*) const: Assertion `I != Map.begin() && "This is not a known stub!"' failed. Full gdb backtrace is attached. This seems to be a memory management issue. I can work around it by disabling some code which erases the temporary IR (eraseFromParent) and JITed code (freeMachineCodeForFunction) which gets executed at global level in Pure, like the Pure 'let' statement above. (You can find these in interpreter.cc if you search for '#if !LAZY_JIT_HACK' further down in the file.) Note that with lazy compilation, the JITing of the lambda (anonymous function) on the right-hand side of the above 'let' statement is still pending after the 'let' statement itself has been executed and its code removed; this seems to be sufficient to trigger the bug. I don't see any of this with eager JITing, or with lazy JITing in previous LLVM versions, so I believe that the relevant code in Pure's interpreter.cc is correct. Sorry, I don't have a smaller code sample which exposes the bug. Jeffrey Yasskin asked me to post the bug report anyway as a reminder, so that he can look into it. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 04:22:02 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 04:22:02 -0600 (CST) Subject: [LLVMbugs] [Bug 6358] Clang rejects an out-of-line destructor declaration with the same name as a global function with horrible diagnostic In-Reply-To: References: Message-ID: <20100221102202.46E5B2A6C11C@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6358 --- Comment #1 from Chandler Carruth 2010-02-21 04:22:02 CST --- I committed a temporary workaround from dgregor as r96733. Leaving bug open until we resolve exactly how function name and class name conflicts here should be handled. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 04:24:52 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 04:24:52 -0600 (CST) Subject: [LLVMbugs] [Bug 6359] Clang rejects out-of-line destructors for classes which are typedef'ed to themselves In-Reply-To: References: Message-ID: <20100221102452.76A142A6C0D1@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6359 --- Comment #1 from Chandler Carruth 2010-02-21 04:24:52 CST --- I committed a temporary workaround from dgregor as r96733. Leaving bug open until we resolve exactly how function name and class name conflicts here should be handled. I'm a bit concerned by whether this one is well-formed. After reading [dcl.typedef] p2 and p4, it seems like even this code is bad: struct S { }; typedef struct S S; // OK typedef struct S S; // error due to typedef-name in elaborated type specifier? Does p4 completely strip the usefulness of p2? I hope I'm missing something. =D -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 04:55:02 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 04:55:02 -0600 (CST) Subject: [LLVMbugs] [Bug 6309] Assertion failed: i != PhysRegsUseOrder.size() && "Couldn't find a register of the appropriate class!", file E:\llvm\lib\CodeGen\RegAllocLocal.cpp, line 422 In-Reply-To: References: Message-ID: <20100221105502.6B54B2A6C0D1@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6309 --- Comment #5 from amine48rz 2010-02-21 04:55:02 CST --- Created an attachment (id=4259) --> (http://www.llvm.org/bugs/attachment.cgi?id=4259) A reduced testcase. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 04:57:24 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 04:57:24 -0600 (CST) Subject: [LLVMbugs] [Bug 6361] New: Clang doesn't have a warning flag for warning: attribute declaration must precede definition Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6361 Summary: Clang doesn't have a warning flag for warning: attribute declaration must precede definition Product: clang Version: trunk Platform: PC OS/Version: Windows NT Status: NEW Severity: normal Priority: P5 Component: -New Bugs AssignedTo: unassignedclangbugs at nondot.org ReportedBy: amine48rz at gmail.com Estimated Hours: 0.0 Here's a testcase : void a(){} void __cdecl a(); Clang emits a warning, but there is no way to disable it. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 05:01:56 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 05:01:56 -0600 (CST) Subject: [LLVMbugs] [Bug 6362] New: A potential bug in pragma pack Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6362 Summary: A potential bug in pragma pack Product: clang Version: trunk Platform: PC OS/Version: Windows NT Status: NEW Severity: normal Priority: P5 Component: -New Bugs AssignedTo: unassignedclangbugs at nondot.org ReportedBy: amine48rz at gmail.com Estimated Hours: 0.0 Here's the testcase : #pragma pack(2) typedef struct { unsigned int a; } b; static void A(void) { extern void __C_ASSERT__(int [(__alignof__(((b*)0)->a) == 2)?1:-1]); } Clang emits an error : array size is negative extern void __C_ASSERT__(int [(__alignof__(((b*)0)->a) == 2)?1:-1]); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 06:30:02 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 06:30:02 -0600 (CST) Subject: [LLVMbugs] [Bug 6348] wrong code bug in msp430 backend In-Reply-To: References: Message-ID: <20100221123002.2F1FB2A6C0D1@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6348 Anton Korobeynikov changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Anton Korobeynikov 2010-02-21 06:30:01 CST --- Fixed in r96734 -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 06:33:47 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 06:33:47 -0600 (CST) Subject: [LLVMbugs] [Bug 6349] miscompilation of volatile variables in msp430 backend In-Reply-To: References: Message-ID: <20100221123347.B0B762A6C122@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6349 Anton Korobeynikov changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |WORKSFORME --- Comment #1 from Anton Korobeynikov 2010-02-21 06:33:47 CST --- I have the following assembler code: mov.w #0, 2(r1) mov.w #0, 0(r1) .LBB1_1: ; %for.cond ; =>This Inner Loop Header: Depth=1 cmp.w #2, 0(r1) jge .LBB1_3 ; BB#2: ; %for.body ; in Loop: Header=BB1_1 Depth=1 mov.w 0(r1), r12 rla.w r12 mov.w #-695, &g_4(r12) add.w #1, 0(r1) jmp .LBB1_1 so, it's pretty obvious, there is a store. Confirmed on mspsim as well. Next time please attach LLVM IR and/or resulting assembler as well. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 06:47:10 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 06:47:10 -0600 (CST) Subject: [LLVMbugs] [Bug 6363] New: Stack overflow somewhere in coalescer Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6363 Summary: Stack overflow somewhere in coalescer Product: libraries Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P3 Component: Backend: X86 AssignedTo: unassignedbugs at nondot.org ReportedBy: asl at math.spbu.ru CC: llvmbugs at cs.uiuc.edu, stoklund at 2pi.dk Estimated Hours: 0.0 Created an attachment (id=4260) --> (http://www.llvm.org/bugs/attachment.cgi?id=4260) Bytecode Consider the attached code. I'm seeing a segfault of llc due to stack overflow. Same bytecode crashes 2.6 llc as well. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 06:48:13 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 06:48:13 -0600 (CST) Subject: [LLVMbugs] [Bug 6363] Stack overflow somewhere in coalescer In-Reply-To: References: Message-ID: <20100221124813.24D942A6C122@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6363 --- Comment #1 from Anton Korobeynikov 2010-02-21 06:48:12 CST --- Valgrind output: ==21572== Stack overflow in thread 1: can't grow stack to 0x7fe801fc8 ==21572== Can't extend stack to 0x7fe801420 during signal delivery for thread 1: ==21572== no stack segment ==21572== ==21572== Process terminating with default action of signal 11 (SIGSEGV) ==21572== Access not within mapped region at address 0x7FE801420 ==21572== at 0xD2437A: llvm::DenseMap, llvm::DenseMapInfo >::LookupBucketFor(llvm::VNInfo* const&, std::pair*&) const (DenseMap.h:302) ==21572== If you believe this happened as a result of a stack overflow in your ==21572== program's main thread (unlikely but possible), you can try to increase ==21572== the size of the main thread stack using the --main-stacksize= flag. ==21572== The main thread stack size used in this run was 8388608. ==21572== Stack overflow in thread 1: can't grow stack to 0x7fe801f18 ==21572== ==21572== Process terminating with default action of signal 11 (SIGSEGV) ==21572== Access not within mapped region at address 0x7FE801F18 ==21572== at 0x4A1D600: _vgnU_freeres (vg_preloaded.c:56) ==21572== If you believe this happened as a result of a stack overflow in your ==21572== program's main thread (unlikely but possible), you can try to increase ==21572== the size of the main thread stack using the --main-stacksize= flag. ==21572== The main thread stack size used in this run was 8388608. Stack trace from gdb: #2 0x0000000000d1632b in ComputeUltimateVN (VNI=0x1ae7550, NewVNInfo=@0x7fffe89ae150, ThisFromOther=@0x7fffe89ae320, OtherFromThis=@0x7fffe89ae340, ThisValNoAssignments=@0x7fffe89ae1f0, OtherValNoAssignments=@0x7fffe89ae250) at /home/asl/proj/llvm/src/lib/CodeGen/SimpleRegisterCoalescing.cpp:1871 #3 0x0000000000d16439 in ComputeUltimateVN (VNI=0x1ae7af0, NewVNInfo=@0x7fffe89ae150, ThisFromOther=@0x7fffe89ae340, OtherFromThis=@0x7fffe89ae320, ThisValNoAssignments=@0x7fffe89ae250, OtherValNoAssignments=@0x7fffe89ae1f0) at /home/asl/proj/llvm/src/lib/CodeGen/SimpleRegisterCoalescing.cpp:1888 #4 0x0000000000d16439 in ComputeUltimateVN (VNI=0x1ae7550, NewVNInfo=@0x7fffe89ae150, ThisFromOther=@0x7fffe89ae320, OtherFromThis=@0x7fffe89ae340, ThisValNoAssignments=@0x7fffe89ae1f0, OtherValNoAssignments=@0x7fffe89ae250) at /home/asl/proj/llvm/src/lib/CodeGen/SimpleRegisterCoalescing.cpp:1888 #5 0x0000000000d16439 in ComputeUltimateVN (VNI=0x1ae7af0, NewVNInfo=@0x7fffe89ae150, ThisFromOther=@0x7fffe89ae340, OtherFromThis=@0x7fffe89ae320, ThisValNoAssignments=@0x7fffe89ae250, OtherValNoAssignments=@0x7fffe89ae1f0) at /home/asl/proj/llvm/src/lib/CodeGen/SimpleRegisterCoalescing.cpp:1888 #6 0x0000000000d16439 in ComputeUltimateVN (VNI=0x1ae7550, NewVNInfo=@0x7fffe89ae150, ThisFromOther=@0x7fffe89ae320, OtherFromThis=@0x7fffe89ae340, ThisValNoAssignments=@0x7fffe89ae1f0, OtherValNoAssignments=@0x7fffe89ae250) at /home/asl/proj/llvm/src/lib/CodeGen/SimpleRegisterCoalescing.cpp:1888 #7 0x0000000000d16439 in ComputeUltimateVN (VNI=0x1ae7af0, NewVNInfo=@0x7fffe89ae150, ThisFromOther=@0x7fffe89ae340, OtherFromThis=@0x7fffe89ae320, ThisValNoAssignments=@0x7fffe89ae250, OtherValNoAssignments=@0x7fffe89ae1f0) at /home/asl/proj/llvm/src/lib/CodeGen/SimpleRegisterCoalescing.cpp:1888 #8 0x0000000000d16439 in ComputeUltimateVN (VNI=0x1ae7550, NewVNInfo=@0x7fffe89ae150, ThisFromOther=@0x7fffe89ae320, -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 11:15:07 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 11:15:07 -0600 (CST) Subject: [LLVMbugs] [Bug 6359] Clang rejects out-of-line destructors for classes which are typedef'ed to themselves In-Reply-To: References: Message-ID: <20100221171507.70F492A6C120@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6359 Johannes Schaub changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |schaub-johannes at web.de --- Comment #2 from Johannes Schaub 2010-02-21 11:15:07 CST --- (In reply to comment #1) > I committed a temporary workaround from dgregor as r96733. Leaving bug open > until we resolve exactly how function name and class name conflicts here should > be handled. > > I'm a bit concerned by whether this one is well-formed. After reading > [dcl.typedef] p2 and p4, it seems like even this code is bad: > > struct S { }; > typedef struct S S; // OK > typedef struct S S; // error due to typedef-name in elaborated type specifier? > > Does p4 completely strip the usefulness of p2? I hope I'm missing something. =D I think your interpretation is correct. See http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#407 . -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 11:20:07 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 11:20:07 -0600 (CST) Subject: [LLVMbugs] [Bug 6364] New: gcc option -fno-toplevel-reorder separates top level inline asm which affects eglibc Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6364 Summary: gcc option -fno-toplevel-reorder separates top level inline asm which affects eglibc Product: libraries Version: trunk Platform: PC OS/Version: Windows XP Status: NEW Severity: enhancement Priority: P5 Component: Common Code Generator Code AssignedTo: unassignedbugs at nondot.org ReportedBy: sergey.yakoushkin at gmail.com CC: llvmbugs at cs.uiuc.edu Estimated Hours: 0.0 Created an attachment (id=4261) --> (http://www.llvm.org/bugs/attachment.cgi?id=4261) source used to create crt code in eglibc -fno-toplevel-reorder option is used with by eglibc library (libc/csu) to generate init/fini code for ctr*. > llvm-gcc initfini.c -c -std=gnu99 -fgnu89-inline -O0 -Wall -Winline -Wwrite-strings -fmerge-all-constants -Wstrict-prototypes -mpreferred-stack-boundary=4 -DHAVE_INITFINI -S -g0 -fPIC -fno-inline-functions -fno-toplevel-reorder -fno-section-anchors -finhibit-size-directive -fno-exceptions -o initfini.s C source file comes with inlined asm having special markup. C is compiled into asm and then gawk is used to strip different parts for different crt* files. However, llvm outputs all top level inlined asm separately in AsmPrinter::doInitialization, and after it outputs all functions. Which results in eglibc fail to build with llvm. initfini.c fragment: asm (".section " ".init" ); extern void __attribute__ ((section (".init"))) _init (void); void _init (void) { call_gmon_start (); asm ("ALIGN"); asm("END_INIT"); asm ("\n/*@_init_PROLOG_ENDS*/"); asm ("\n/*@_init_EPILOG_BEGINS*/"); asm (".section " ".init" ); } asm ("END_INIT"); asm ("\n/*@_init_EPILOG_ENDS*/"); asm ("\n/*@_fini_PROLOG_BEGINS*/"); -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 11:21:06 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 11:21:06 -0600 (CST) Subject: [LLVMbugs] [Bug 6364] gcc option -fno-toplevel-reorder separates top level inline asm which affects eglibc In-Reply-To: References: Message-ID: <20100221172106.F0CF32A6C11F@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6364 Sergey Yakoushkin changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P5 |P3 Version|trunk |2.6 OS/Version|Windows XP |Linux Severity|enhancement |normal -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 11:42:58 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 11:42:58 -0600 (CST) Subject: [LLVMbugs] [Bug 6365] New: Assertion failed: (Access != AS_none && "Access specifier is AS_none inside a record decl") Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6365 Summary: Assertion failed: (Access != AS_none && "Access specifier is AS_none inside a record decl") Product: clang Version: trunk Platform: PC OS/Version: All Status: NEW Severity: enhancement Priority: P5 Component: parser AssignedTo: unassignedclangbugs at nondot.org ReportedBy: ich at az2000.de CC: llvmbugs at cs.uiuc.edu Estimated Hours: 0.0 I'm trying to parse some c++ code with clang but I get this: Assertion failed: (Access != AS_none && "Access specifier is AS_none inside a record decl"), function CheckAccessDeclContext, file DeclBase.cpp, line 443. This is with cfe/trunk at 96638 . The code I was trying to compile is pretty big and has many further includes. Any easy way I can post the result after the preprocessor? (I remember there was such a thing for GCC but don't remember the command.) -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 12:09:21 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 12:09:21 -0600 (CST) Subject: [LLVMbugs] [Bug 6366] New: llvm-gcc internal compiler error on cross-compiler libraries build Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6366 Summary: llvm-gcc internal compiler error on cross-compiler libraries build Product: libraries Version: 2.6 Platform: PC OS/Version: Linux Status: NEW Severity: major Priority: P5 Component: Global Analyses AssignedTo: unassignedbugs at nondot.org ReportedBy: sergey.yakoushkin at gmail.com CC: llvmbugs at cs.uiuc.edu Estimated Hours: 0.0 Created an attachment (id=4262) --> (http://www.llvm.org/bugs/attachment.cgi?id=4262) eglibc csu build Internal llvm-gcc compiler error during cross-compiler libraries (eglibc) build. sources/llvm/lib/Analysis/DebugInfo.cpp:63: static bool llvm::DIDescriptor::ValidDebugInfo(llvm::Value*, llvm::CodeGenOpt::Level): Assertion `DISubprogram(GV).Verify() && "Invalid DebugInfo value"' failed. :18: internal compiler error: Aborted Please submit a full bug report, with preprocessed source if appropriate. See for instructions. Conditions: 1. compiler input is using pipe 2. flag -g is passed 3. 1st phase of cross-compiler llvm-gcc build (configure without headers, no any libc built yet) Command line: cat eglibc_csu.c | llvm-gcc -o eglibc_csu.o -S -std=gnu99 -fgnu89-inline -O2 -g -Wall -Winline -Wwrite-strings -fmerge-all-constants -march=i486 -Wstrict-prototypes -mpreferred-stack-boundary=4 -D_LIBC_REENTRANT -DHAVE_INITFINI -x c - -MD -MP -O1 -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 12:09:37 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 12:09:37 -0600 (CST) Subject: [LLVMbugs] [Bug 6366] llvm-gcc internal compiler error on cross-compiler libraries build In-Reply-To: References: Message-ID: <20100221180937.D3D792A6C11F@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6366 Sergey Yakoushkin changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P5 |P3 -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 12:18:44 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 12:18:44 -0600 (CST) Subject: [LLVMbugs] [Bug 6365] Assertion failed: (Access != AS_none && "Access specifier is AS_none inside a record decl") In-Reply-To: References: Message-ID: <20100221181844.7A8D72A6C122@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6365 --- Comment #1 from Chris Lattner 2010-02-21 12:18:44 CST --- clang -E foo.cpp -o foo.ii runs just the preprocessor. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 12:20:39 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 12:20:39 -0600 (CST) Subject: [LLVMbugs] [Bug 6365] Assertion failed: (Access != AS_none && "Access specifier is AS_none inside a record decl") In-Reply-To: References: Message-ID: <20100221182039.7EEC32A6C122@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6365 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dgregor at apple.com Component|parser |C++ -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 12:21:50 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 12:21:50 -0600 (CST) Subject: [LLVMbugs] [Bug 6362] A potential bug in pragma pack In-Reply-To: References: Message-ID: <20100221182150.2E3EF2A6C122@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6362 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu Component|-New Bugs |Semantic Analyzer -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 12:24:07 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 12:24:07 -0600 (CST) Subject: [LLVMbugs] [Bug 6364] gcc option -fno-toplevel-reorder separates top level inline asm which affects eglibc In-Reply-To: References: Message-ID: <20100221182407.72D7D2A6C120@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6364 Anton Korobeynikov changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |asl at math.spbu.ru --- Comment #1 from Anton Korobeynikov 2010-02-21 12:24:07 CST --- We do not support this flag, and I really doubt this will happen one day. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 12:26:10 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 12:26:10 -0600 (CST) Subject: [LLVMbugs] [Bug 6366] llvm-gcc internal compiler error on cross-compiler libraries build In-Reply-To: References: Message-ID: <20100221182610.C387A2A6C120@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6366 Anton Korobeynikov changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |asl at math.spbu.ru, | |devang.patel at gmail.com -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 12:27:55 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 12:27:55 -0600 (CST) Subject: [LLVMbugs] [Bug 6365] Assertion failed: (Access != AS_none && "Access specifier is AS_none inside a record decl") In-Reply-To: References: Message-ID: <20100221182755.CA5A92A6C122@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6365 --- Comment #2 from Albert Zeyer 2010-02-21 12:27:55 CST --- With some output on cerr instead of the assert, I am getting this: (std::_Rb_tree) ... template ::__value> struct _Rb_tree_impl : public _Node_allocator { public: _Key_compare _M_key_compare; struct std::_Rb_tree_node_base _M_header; size_type _M_node_count; _Rb_tree_impl(_Node_allocator const &__a = _Node_allocator(), _Key_compare const &__comp = _Key_compare()) : _Node_allocator(__a), _M_key_compare(__comp), _M_node_count(0) { this->_M_header._M_color = _S_red; this->_M_header._M_parent = 0; this->_M_header._M_left = & this->_M_header; this->_M_header._M_right = & this->_M_header; } }; ERROR: Access == AS_none WRONGWRONG_AS_none: struct _Rb_tree_impl : public _Node_allocator { public: _Key_compare _M_key_compare; struct std::_Rb_tree_node_base _M_header; size_type _M_node_count; _Rb_tree_impl(_Node_allocator const &__a = _Node_allocator(), _Key_compare const &__comp = _Key_compare()) : _Node_allocator(__a), _M_key_compare(__comp), _M_node_count(0) { this->_M_header._M_color = _S_red; this->_M_header._M_parent = 0; this->_M_header._M_left = & this->_M_header; this->_M_header._M_right = & this->_M_header; } }; protected: _Rb_tree_impl<_Compare> _M_impl; _Base_ptr &_M_root() { return this->_M_impl._M_header._M_parent; } _Const_Base_ptr _M_root() { return this->_M_impl._M_header._M_parent; } ... -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 12:31:09 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 12:31:09 -0600 (CST) Subject: [LLVMbugs] [Bug 6365] Assertion failed: (Access != AS_none && "Access specifier is AS_none inside a record decl") In-Reply-To: References: Message-ID: <20100221183109.3CFBF2A6C122@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6365 --- Comment #3 from Albert Zeyer 2010-02-21 12:31:08 CST --- And with the assert, executed in gdb, I get this: ... void destroy_node(_Link_type __p) { this->get_allocator().destroy(& __p->_M_value_field); this->_M_put_node(__p); } template ::__value> struct _Rb_tree_impl : public _Node_allocator { public: _Key_compare _M_key_compare; struct std::_Rb_tree_node_base _M_header; size_type _M_node_count; _Rb_tree_impl(_Node_allocator const &__a = _Node_allocator(), _Key_compare const &__comp = _Key_compare()) : _Node_allocator(__a), _M_key_compare(__comp), _M_node_count(0) { this->_M_header._M_color = _S_red; this->_M_header._M_parent = 0; this->_M_header._M_left = & this->_M_header; this->_M_header._M_right = & this->_M_header; } }; Assertion failed: (Access != AS_none && "Access specifier is AS_none inside a record decl"), function CheckAccessDeclContext, file DeclBase.cpp, line 443. Program received signal SIGABRT, Aborted. 0x95429e42 in __kill () (gdb) bt #0 0x95429e42 in __kill () #1 0x95429e34 in kill$UNIX2003 () #2 0x9549c23a in raise () #3 0x954a8679 in abort () #4 0x9549d3db in __assert_rtn () #5 0x004f856c in clang::Decl::CheckAccessDeclContext (this=0x41f1930) at DeclBase.cpp:442 #6 0x0026a0a9 in clang::Decl::getAccess (this=0x41f1930) at DeclBase.h:245 #7 0x00509851 in (anonymous namespace)::DeclPrinter::VisitDeclContext (this=0xbfffe338, DC=0x41ef2bc, Indent=true) at DeclPrinter.cpp:215 #8 0x0050a87f in (anonymous namespace)::DeclPrinter::VisitCXXRecordDecl (this=0xbfffe338, D=0x41ef2a0) at DeclPrinter.cpp:588 #9 0x0050c0c4 in clang::DeclVisitor<(anonymous namespace)::DeclPrinter, void>::Visit (this=0xbfffe338, D=0x41ef2a0) at DeclNodes.def:87 #10 0x005094a3 in (anonymous namespace)::DeclPrinter::VisitTemplateDecl (this=0xbfffe338, D=0x41efba0) at DeclPrinter.cpp:660 #11 0x0050c49a in clang::DeclVisitor<(anonymous namespace)::DeclPrinter, void>::VisitClassTemplateDecl (this=0xbfffe338, D=0x41efba0) at DeclNodes.def:110 #12 0x0050c290 in clang::DeclVisitor<(anonymous namespace)::DeclPrinter, void>::Visit (this=0xbfffe338, D=0x41efba0) at DeclNodes.def:110 #13 0x00509a98 in (anonymous namespace)::DeclPrinter::VisitDeclContext (this=0xbfffe338, DC=0x41e8f18, Indent=true) at DeclPrinter.cpp:255 #14 0x0050a941 in (anonymous namespace)::DeclPrinter::VisitNamespaceDecl (this=0xbfffe338, D=0x41e8f00) at DeclPrinter.cpp:541 #15 0x0050c023 in clang::DeclVisitor<(anonymous namespace)::DeclPrinter, void>::Visit (this=0xbfffe338, D=0x41e8f00) at DeclNodes.def:78 #16 0x00509a98 in (anonymous namespace)::DeclPrinter::VisitDeclContext (this=0xbfffe338, DC=0x3402c44, Indent=false) at DeclPrinter.cpp:255 #17 0x0050ab64 in (anonymous namespace)::DeclPrinter::VisitTranslationUnitDecl (this=0xbfffe338, D=0x3402c30) at DeclPrinter.cpp:292 #18 0x0050c00c in clang::DeclVisitor<(anonymous namespace)::DeclPrinter, void>::Visit (this=0xbfffe338, D=0x3402c30) at DeclNodes.def:76 #19 0x005094f5 in clang::Decl::print (this=0x3402c30, Out=@0x3405000, Policy=@0xbfffe374, Indentation=0) at DeclPrinter.cpp:87 #20 0x0000a75b in (anonymous namespace)::ASTPrinter::HandleTranslationUnit (this=0x3404ff0, Context=@0x3823400) at ASTConsumers.cpp:48 #21 0x00219a8e in clang::ParseAST (PP=@0x34025c0, Consumer=0x3404ff0, Ctx=@0x3823400, PrintStats=false, CompleteTranslationUnit=true, CompletionConsumer=0x0) at ParseAST.cpp:84 #22 0x0003dd2a in clang::ASTFrontendAction::ExecuteAction (this=0x34021f0) at FrontendAction.cpp:219 #23 0x0003dc1a in clang::FrontendAction::Execute (this=0x34021f0) at FrontendAction.cpp:149 #24 0x0001f9fd in clang::CompilerInstance::ExecuteAction (this=0xbfffeec4, Act=@0x34021f0) at CompilerInstance.cpp:509 #25 0x00002914 in cc1_main (ArgBegin=0xbffff308, ArgEnd=0xbffff330, Argv0=0xbffff3ec "/Users/az/Programmierung/CppIDE/llvm-src/Debug/bin/clang++", MainAddr=0x56d8) at cc1_main.cpp:269 #26 0x00006585 in main (argc=12, argv=0xbffff300) at driver.cpp:209 (gdb) -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 12:32:19 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 12:32:19 -0600 (CST) Subject: [LLVMbugs] [Bug 6365] Assertion failed: (Access != AS_none && "Access specifier is AS_none inside a record decl") In-Reply-To: References: Message-ID: <20100221183219.B340B2A6C122@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6365 --- Comment #4 from Albert Zeyer 2010-02-21 12:32:19 CST --- Is it related to this FIXME? :) DeclPrinter::VisitCXXRecordDecl: // Print the class definition // FIXME: Doesn't print access specifiers, e.g., "public:" Out << " {\n"; VisitDeclContext(D); Indent() << "}"; -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 12:33:11 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 12:33:11 -0600 (CST) Subject: [LLVMbugs] [Bug 6360] JIT->DisableLazyCompilation(false) triggers assertion in JITEmitter.cpp:304 In-Reply-To: References: Message-ID: <20100221183311.694562A6C125@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6360 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jyasskin at google.com -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 12:34:41 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 12:34:41 -0600 (CST) Subject: [LLVMbugs] [Bug 6365] Assertion failed: (Access != AS_none && "Access specifier is AS_none inside a record decl") In-Reply-To: References: Message-ID: <20100221183441.4D59E2A6C11F@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6365 --- Comment #5 from Albert Zeyer 2010-02-21 12:34:40 CST --- Created an attachment (id=4263) --> (http://www.llvm.org/bugs/attachment.cgi?id=4263) preproccessed file -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 12:36:39 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 12:36:39 -0600 (CST) Subject: [LLVMbugs] [Bug 6141] Crash in DeduceTemplateArguments on complex templates In-Reply-To: References: Message-ID: <20100221183639.B232D2A6C123@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6141 Douglas Gregor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #4 from Douglas Gregor 2010-02-21 12:36:38 CST --- Fixed here: http://lists.cs.uiuc.edu/pipermail/cfe-commits/Week-of-Mon-20100215/027778.html -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 12:38:32 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 12:38:32 -0600 (CST) Subject: [LLVMbugs] [Bug 6015] Stack Overflow compiling C++ code In-Reply-To: References: Message-ID: <20100221183832.E45812A6C123@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6015 --- Comment #4 from Douglas Gregor 2010-02-21 12:38:32 CST --- Anton: can you still reproduce this issue with r96742 or newer? I may have fixed it with PR6141. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 12:43:22 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 12:43:22 -0600 (CST) Subject: [LLVMbugs] [Bug 6364] gcc option -fno-toplevel-reorder separates top level inline asm which affects eglibc In-Reply-To: References: Message-ID: <20100221184322.F29252A6C129@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6364 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |WONTFIX --- Comment #2 from Chris Lattner 2010-02-21 12:43:22 CST --- Right, this flag is deprecated by GCC and we have no intention of implementing it. The code should be fixed to not depend on it. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 12:49:46 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 12:49:46 -0600 (CST) Subject: [LLVMbugs] [Bug 6015] Stack Overflow compiling C++ code In-Reply-To: References: Message-ID: <20100221184946.9FB202A6C127@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6015 --- Comment #5 from Anton Korobeynikov 2010-02-21 12:49:46 CST --- (In reply to comment #4) > Anton: can you still reproduce this issue with r96742 or newer? I may have > fixed it with PR6141. I will check next time I will build qt and will close this bug, if the build will succeed (I believe it will :) ) -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 12:54:48 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 12:54:48 -0600 (CST) Subject: [LLVMbugs] [Bug 6363] Stack overflow somewhere in coalescer In-Reply-To: References: Message-ID: <20100221185448.C65DF2A6C12C@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6363 --- Comment #2 from Jakob Stoklund Olesen 2010-02-21 12:54:48 CST --- r96744 changes this to an assertion failure. It looks like valnos are somehow forming a cycle. That is not supposed to happen. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 13:08:55 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 13:08:55 -0600 (CST) Subject: [LLVMbugs] [Bug 6367] New: [QOI] warn about free functions which shadow one in a namespace Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6367 Summary: [QOI] warn about free functions which shadow one in a namespace Product: clang Version: unspecified Platform: PC OS/Version: All Status: NEW Severity: enhancement Priority: P5 Component: C++ AssignedTo: unassignedclangbugs at nondot.org ReportedBy: daniel at zuster.org CC: dgregor at apple.com Estimated Hours: 0.0 I would like clang to optionally warn me about 'f0' in this: -- ddunbar at giles:tmp$ cat t.cpp void f1(); namespace foo { void f0(); void f1(); } void f0() {} // expected-warning {{something nice}} void f1() {} ddunbar at giles:tmp$ clang -Wall -c t.cpp ddunbar at giles:tmp$ -- I almost never care to implement a non-static, undeclared function. I want clang to point out that I am doing this when it can find a 'f0' inside a different namespace. I want a fixit for adding 'foo::'. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 13:10:10 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 13:10:10 -0600 (CST) Subject: [LLVMbugs] [Bug 6367] [QOI] warn about free functions which shadow one in a namespace In-Reply-To: References: Message-ID: <20100221191010.DFE552A6C127@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6367 Daniel Dunbar changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |clattner at apple.com -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 13:10:37 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 13:10:37 -0600 (CST) Subject: [LLVMbugs] [Bug 6367] [QOI] warn about free functions which shadow one in a namespace In-Reply-To: References: Message-ID: <20100221191037.2B23D2A6C127@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6367 Daniel Dunbar changed: What |Removed |Added ---------------------------------------------------------------------------- CC|clattner at apple.com | -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 13:23:00 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 13:23:00 -0600 (CST) Subject: [LLVMbugs] [Bug 6365] Assertion failed: (Access != AS_none && "Access specifier is AS_none inside a record decl") In-Reply-To: References: Message-ID: <20100221192300.EDAF82A6C124@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6365 Chandler Carruth changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED CC| |chandlerc at gmail.com AssignedTo|unassignedclangbugs at nondot. |chandlerc at gmail.com |org | --- Comment #6 from Chandler Carruth 2010-02-21 13:23:00 CST --- This is the same type of stuff that was being hit in PR6358 and PR6359. I was seeing these assertions (and two other ones) whenever destructor name lookup failed. I committed a work-around dgregor sent me in r96733. After that, running clang doesn't show any errors (or asserts) for the attached file. I've got a mostly complete patch that really improves our recovery in the event of an invalid destructor decl. I'll finish it up, and test it, but it may need to wait until we get some of what r96733 reverted checked back in so that it can actually find invalid destructors. =D -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 13:34:24 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 13:34:24 -0600 (CST) Subject: [LLVMbugs] [Bug 6365] Assertion failed: (Access != AS_none && "Access specifier is AS_none inside a record decl") In-Reply-To: References: Message-ID: <20100221193424.CBFA02A6C124@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6365 --- Comment #7 from Albert Zeyer 2010-02-21 13:34:24 CST --- I dived a bit more into the code: CXXRecord is used for struct/class/enum/union all together? So the FIXME in DeclPrinter::VisitCXXRecordDecl // FIXME: Doesn't print access specifiers, e.g., "public:" is invalid then, isn't it? (Or at least for the case when it is a class.) But I guess it is not related at all to the problem. --- Btw., in my stl_tree.h, it looks like this: ... void destroy_node(_Link_type __p) { get_allocator().destroy(&__p->_M_value_field); _M_put_node(__p); } protected: template::__value> struct _Rb_tree_impl : public _Node_allocator { _Key_compare _M_key_compare; _Rb_tree_node_base _M_header; size_type _M_node_count; // Keeps track of size of tree. _Rb_tree_impl(const _Node_allocator& __a = _Node_allocator(), const _Key_compare& __comp = _Key_compare()) : _Node_allocator(__a), _M_key_compare(__comp), _M_node_count(0) { this->_M_header._M_color = _S_red; this->_M_header._M_parent = 0; this->_M_header._M_left = &this->_M_header; this->_M_header._M_right = &this->_M_header; } }; // Specialization for _Comparison types that are not capable of // being base classes / super classes. template struct _Rb_tree_impl<_Key_compare, true> : public _Node_allocator { _Key_compare _M_key_compare; _Rb_tree_node_base _M_header; size_type _M_node_count; // Keeps track of size of tree. _Rb_tree_impl(const _Node_allocator& __a = _Node_allocator(), const _Key_compare& __comp = _Key_compare()) : _Node_allocator(__a), _M_key_compare(__comp), _M_node_count(0) { this->_M_header._M_color = _S_red; this->_M_header._M_parent = 0; this->_M_header._M_left = &this->_M_header; this->_M_header._M_right = &this->_M_header; } }; ... I.e., the second _Rb_tree_impl is a specialisation of the first general declaration. In the output (printed by -ast-print), this is wrong. Should I make an addition bug report about this? Or is this problem related to the failing assert? -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 13:46:47 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 13:46:47 -0600 (CST) Subject: [LLVMbugs] [Bug 6364] gcc option -fno-toplevel-reorder separates top level inline asm which affects eglibc In-Reply-To: References: Message-ID: <20100221194647.390352A6C124@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6364 --- Comment #3 from Sergey Yakoushkin 2010-02-21 13:46:46 CST --- Are there existing patches for glibc/eglibc for llvm? BTW. Are there any technical issues to support option? (In reply to comment #2) > Right, this flag is deprecated by GCC and we have no intention of implementing > it. The code should be fixed to not depend on it. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 13:48:24 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 13:48:24 -0600 (CST) Subject: [LLVMbugs] [Bug 6364] gcc option -fno-toplevel-reorder separates top level inline asm which affects eglibc In-Reply-To: References: Message-ID: <20100221194824.382082A6C127@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6364 --- Comment #4 from Chris Lattner 2010-02-21 13:48:23 CST --- I don't know if there are patches, there are many technical reasons to not support this. We don't track the order of inline asm vs functions. Adding it would be significant implementation effort for an option that is deprecated (and never really made sense). -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 14:05:10 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 14:05:10 -0600 (CST) Subject: [LLVMbugs] [Bug 6364] gcc option -fno-toplevel-reorder separates top level inline asm which affects eglibc In-Reply-To: References: Message-ID: <20100221200511.0CEBC2A6C124@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6364 --- Comment #5 from Sergey Yakoushkin 2010-02-21 14:05:10 CST --- Thanks for your answer, Chris. Ok, option support seems to be unlikely. But I don't think I'm the first one facing issues with C libraries build. Haven't found info on the web yet. Is there any support person for that? Or appropriate topic to discuss? -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 14:18:30 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 14:18:30 -0600 (CST) Subject: [LLVMbugs] [Bug 6368] New: crash on attached test Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6368 Summary: crash on attached test Product: clang Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: enhancement Priority: P5 Component: C++ AssignedTo: unassignedclangbugs at nondot.org ReportedBy: c.r1 at gmx.de CC: dgregor at apple.com Estimated Hours: 0.0 Created an attachment (id=4264) --> (http://www.llvm.org/bugs/attachment.cgi?id=4264) testcase Hi, clang crashes on the atteched (invalid) testcase. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 14:22:53 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 14:22:53 -0600 (CST) Subject: [LLVMbugs] [Bug 6364] gcc option -fno-toplevel-reorder separates top level inline asm which affects eglibc In-Reply-To: References: Message-ID: <20100221202253.0FAAB2A6C127@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6364 --- Comment #6 from Chris Lattner 2010-02-21 14:22:52 CST --- I don't really know, but you can definitely email llvmdev and ask if others have any idea -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 14:25:16 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 14:25:16 -0600 (CST) Subject: [LLVMbugs] [Bug 6369] New: Assertion failed: (Name.isIdentifier() && "Name is not a simple identifier") Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6369 Summary: Assertion failed: (Name.isIdentifier() && "Name is not a simple identifier") Product: clang Version: trunk Platform: Other OS/Version: FreeBSD Status: NEW Severity: normal Priority: P5 Component: -New Bugs AssignedTo: unassignedclangbugs at nondot.org ReportedBy: hinokind at gmail.com Estimated Hours: 0.0 Assertion fails when compiling this code, only if DEBUG is defined in the environment. Tested with r96751. $ cat assert.cc class Encoding { char method() { return 0; } virtual ~Encoding(); } fe; void foo() { char bar = fe.method(); } $ DEBUG= clang assert.cc vtable Encoding building entries for base Encoding most derived Encoding doing vbase entries for Encoding most derived Encoding doing vcall entries for Encoding most derived Encoding Assertion failed: (Name.isIdentifier() && "Name is not a simple identifier"), function getNameAsCString, file /projects/llvm/tools/clang/lib/Frontend/../../include/clang/AST/Decl.h, line 123. Stack dump: 0. Program arguments: /usr/local/bin/clang -cc1 -triple x86_64-unknown-freebsd8.0 -S -disable-free -main-file-name assert.cc -mrelocation-model static -mdisable-fp-elim -mconstructor-aliases -munwind-tables -target-cpu x86-64 -resource-dir /usr/local/lib/clang/1.1 -fmessage-length 157 -fexceptions -fgnu-runtime -fdiagnostics-show-option -fcolor-diagnostics -o /tmp/cc-CTNdKn.s -x c++ assert.cc 1. parser at end of file 2. Per-file LLVM IR generation 3. assert.cc:1:7: Generating code for declaration 'Encoding::Encoding' clang: error: compiler command failed due to signal 6 (use -v to see invocation) -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 14:32:35 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 14:32:35 -0600 (CST) Subject: [LLVMbugs] [Bug 6370] New: dag scheduler is nondeterministic Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6370 Summary: dag scheduler is nondeterministic Product: libraries Version: 1.0 Platform: PC OS/Version: All Status: NEW Severity: enhancement Priority: P5 Component: Common Code Generator Code AssignedTo: unassignedbugs at nondot.org ReportedBy: clattner at apple.com CC: llvmbugs at cs.uiuc.edu Estimated Hours: 0.0 This testcase: define void @test() nounwind { store i32 0, i32* inttoptr (i64 48725999 to i32*) ret void } Generates one of these two code sequences depending on where SDNode's end up being allocated in memory: _test: ; @test ; BB#0: lis r3, 743 li r4, 0 stw r4, 32751(r3) blr _test: ; @test ; BB#0: li r3, 0 lis r4, 743 stw r3, 32751(r4) blr The -view-sched-dags output of both of them is identical other than the addresses of the nodes. To reproduce this, you can apply a patch to turn on the new instruction selector (attached). -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 14:34:09 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 14:34:09 -0600 (CST) Subject: [LLVMbugs] [Bug 6370] dag scheduler is nondeterministic In-Reply-To: References: Message-ID: <20100221203409.59E4C2A6C124@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6370 --- Comment #1 from Chris Lattner 2010-02-21 14:34:09 CST --- Created an attachment (id=4265) --> (http://www.llvm.org/bugs/attachment.cgi?id=4265) turn on the new scheduler for ppc Oh, also the llc command is: llc < t.ll -march=ppc64 -mtriple=powerpc-apple-darwin -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 14:34:31 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 14:34:31 -0600 (CST) Subject: [LLVMbugs] [Bug 6370] dag scheduler is nondeterministic In-Reply-To: References: Message-ID: <20100221203431.B084C2A6C127@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6370 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |evan.cheng at apple.com, | |gohman at apple.com -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 14:42:21 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 14:42:21 -0600 (CST) Subject: [LLVMbugs] [Bug 6370] dag scheduler is nondeterministic In-Reply-To: References: Message-ID: <20100221204221.7613C2A6C129@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6370 Anton Korobeynikov changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |asl at math.spbu.ru -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 14:44:23 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 14:44:23 -0600 (CST) Subject: [LLVMbugs] [Bug 6369] Assertion failed: (Name.isIdentifier() && "Name is not a simple identifier") In-Reply-To: References: Message-ID: <20100221204423.0CD432A6C11F@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6369 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dgregor at apple.com Component|-New Bugs |C++ -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 14:49:57 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 14:49:57 -0600 (CST) Subject: [LLVMbugs] [Bug 6370] dag scheduler is nondeterministic In-Reply-To: References: Message-ID: <20100221204957.7159D2A6C127@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6370 Jakob Stoklund Olesen changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |stoklund at 2pi.dk -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 14:53:46 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 14:53:46 -0600 (CST) Subject: [LLVMbugs] [Bug 5818] CXXRecordDecl::getDestructor: Assertion `I != E && "Did not find a destructor!"' failed. In-Reply-To: References: Message-ID: <20100221205346.45FB42A6C127@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=5818 Andrius Morkunas changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |hinokind at gmail.com -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 14:58:36 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 14:58:36 -0600 (CST) Subject: [LLVMbugs] [Bug 6365] Assertion failed: (Access != AS_none && "Access specifier is AS_none inside a record decl") In-Reply-To: References: Message-ID: <20100221205836.5399C2A6C11F@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6365 --- Comment #8 from Andrius Morkunas 2010-02-21 14:58:35 CST --- Created an attachment (id=4266) --> (http://www.llvm.org/bugs/attachment.cgi?id=4266) testcase -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 14:58:51 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 14:58:51 -0600 (CST) Subject: [LLVMbugs] [Bug 6365] Assertion failed: (Access != AS_none && "Access specifier is AS_none inside a record decl") In-Reply-To: References: Message-ID: <20100221205851.954DA2A6C127@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6365 Andrius Morkunas changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |hinokind at gmail.com -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 15:05:08 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 15:05:08 -0600 (CST) Subject: [LLVMbugs] [Bug 6371] New: Assertion failed: (TInfo && "couldn't build declarator info for anonymous struct/union") Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6371 Summary: Assertion failed: (TInfo && "couldn't build declarator info for anonymous struct/union") Product: clang Version: trunk Platform: Other OS/Version: FreeBSD Status: NEW Severity: normal Priority: P5 Component: -New Bugs AssignedTo: unassignedclangbugs at nondot.org ReportedBy: hinokind at gmail.com Estimated Hours: 0.0 Created an attachment (id=4267) --> (http://www.llvm.org/bugs/attachment.cgi?id=4267) testcase clang r96756 $ cat assert.c typedef struct { struct { extern foo bar; $ clang assert.c assert.c:3:8: error: unknown type name 'foo' extern foo bar; ^ assert.c:3:1: error: type name does not allow storage class to be specified extern foo bar; ^ assert.c:3:16: error: expected '}' extern foo bar; ^ assert.c:2:9: note: to match this '{' struct { ^ assert.c:3:16: error: expected ';' after struct extern foo bar; ^ ; Assertion failed: (TInfo && "couldn't build declarator info for anonymous struct/union"), function BuildAnonymousStructOrUnion, file SemaDecl.cpp, line 1656. Stack dump: 0. Program arguments: /usr/local/bin/clang -cc1 -triple x86_64-unknown-freebsd8.0 -S -disable-free -main-file-name assert.c -mrelocation-model static -mdisable-fp-elim -mconstructor-aliases -munwind-tables -target-cpu x86-64 -resource-dir /usr/local/lib/clang/1.1 -fmessage-length 157 -fgnu-runtime -fdiagnostics-show-option -fcolor-diagnostics -o /tmp/cc-ofIwM5.s -x c assert.c 1. assert.c:3:16: current parser token '' 2. assert.c:1:9: parsing struct/union body clang: error: compiler command failed due to signal 6 (use -v to see invocation) -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 15:10:23 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 15:10:23 -0600 (CST) Subject: [LLVMbugs] [Bug 6353] clang emits U symbol while gcc emits W one In-Reply-To: References: Message-ID: <20100221211024.02FE42A6C127@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6353 Roman Divacky changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #4256|0 |1 is obsolete| | --- Comment #2 from Roman Divacky 2010-02-21 15:10:23 CST --- Created an attachment (id=4268) --> (http://www.llvm.org/bugs/attachment.cgi?id=4268) test case a little more reduced test case... -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 15:20:12 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 15:20:12 -0600 (CST) Subject: [LLVMbugs] [Bug 6372] New: UNREACHABLE executed at LiveIntervalAnalysis.cpp:773! Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6372 Summary: UNREACHABLE executed at LiveIntervalAnalysis.cpp:773! Product: clang Version: trunk Platform: Other OS/Version: FreeBSD Status: NEW Severity: normal Priority: P5 Component: -New Bugs AssignedTo: unassignedclangbugs at nondot.org ReportedBy: hinokind at gmail.com Estimated Hours: 0.0 Created an attachment (id=4269) --> (http://www.llvm.org/bugs/attachment.cgi?id=4269) testcase clang r96756 $ cat unreach.c typedef struct whatever { enum {} foo; enum {} bar; long foobar; } hax; void *foo() { hax *image = 0; char index; long x; char *p = 0; for (x=0; x < image->bar; x++) { index=*p++ & 0xFF; if (index >= image->foobar) { invalid(0, 0, index); index=0; } p[x]=index; index=*p++ & 0xFF; if (index >= image->foobar) { invalid(0, 0, index); index=0; } p[x]=index; } } $ clang -O1 unreach.c unreach.c:18:4: warning: implicit declaration of function 'invalid' is invalid in C99 [-Wimplicit-function-declaration] invalid(0, 0, index); ^ unreach.c:30:1: warning: control reaches end of non-void function [-Wreturn-type] } ^ Unrecognized copy instruction! UNREACHABLE executed at LiveIntervalAnalysis.cpp:773! Stack dump: 0. Program arguments: /usr/local/bin/clang -cc1 -triple x86_64-unknown-freebsd8.0 -S -disable-free -main-file-name unreach.c -mrelocation-model static -mdisable-fp-elim -mconstructor-aliases -munwind-tables -target-cpu x86-64 -resource-dir /usr/local/lib/clang/1.1 -O1 -fmessage-length 157 -fgnu-runtime -fdiagnostics-show-option -fcolor-diagnostics -o /tmp/cc-lS8A9z.s -x c unreach.c 1. parser at end of file 2. Code generation 3. Running pass 'Simple Register Coalescing' on function '@foo' clang: error: compiler command failed due to signal 6 (use -v to see invocation) -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 15:24:40 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 15:24:40 -0600 (CST) Subject: [LLVMbugs] [Bug 6373] New: ICE cannot be evaluated!; UNREACHABLE executed at Expr.cpp:1916! Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6373 Summary: ICE cannot be evaluated!; UNREACHABLE executed at Expr.cpp:1916! Product: clang Version: trunk Platform: Other OS/Version: FreeBSD Status: NEW Severity: normal Priority: P5 Component: C++ AssignedTo: unassignedclangbugs at nondot.org ReportedBy: hinokind at gmail.com CC: dgregor at apple.com Estimated Hours: 0.0 Created an attachment (id=4270) --> (http://www.llvm.org/bugs/attachment.cgi?id=4270) testcase $ cat unreach.cpp class FCHKFormat { template static bool read_numbers(const char * const, int &, const unsigned int width = 0); }; template bool FCHKFormat::read_numbers(const char * const line, int & v, const unsigned int width) { int maxColumns = 80 / width; } $ clang++ unreach.cpp ICE cannot be evaluated! UNREACHABLE executed at Expr.cpp:1916! Stack dump: 0. Program arguments: /usr/local/bin/clang -cc1 -triple x86_64-unknown-freebsd8.0 -S -disable-free -main-file-name unreach.cpp -mrelocation-model static -mdisable-fp-elim -mconstructor-aliases -munwind-tables -target-cpu x86-64 -resource-dir /usr/local/lib/clang/1.1 -fmessage-length 157 -fexceptions -fgnu-runtime -fdiagnostics-show-option -fcolor-diagnostics -o /tmp/cc-pb9PKw.s -x c++ unreach.cpp 1. unreach.cpp:8:29: current parser token ';' 2. unreach.cpp:7:1: parsing function body 'FCHKFormat::read_numbers' 3. unreach.cpp:7:1: in compound statement ('{}') clang: error: compiler command failed due to signal 6 (use -v to see invocation) -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 15:26:17 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 15:26:17 -0600 (CST) Subject: [LLVMbugs] [Bug 6372] Unrecognized copy instruction!; UNREACHABLE executed at LiveIntervalAnalysis.cpp:773! In-Reply-To: References: Message-ID: <20100221212617.E08B02A6C11F@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6372 Andrius Morkunas changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|UNREACHABLE executed at |Unrecognized copy |LiveIntervalAnalysis.cpp:77 |instruction!; UNREACHABLE |3! |executed at | |LiveIntervalAnalysis.cpp:77 | |3! -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 15:35:55 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 15:35:55 -0600 (CST) Subject: [LLVMbugs] [Bug 6353] clang emits U symbol while gcc emits W one In-Reply-To: References: Message-ID: <20100221213555.AAFB72A6C129@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6353 Rafael ??vila de Esp??ndola changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |rafael.espindola at gmail.com -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 15:55:56 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 15:55:56 -0600 (CST) Subject: [LLVMbugs] [Bug 6374] New: Assertion failed: (lr && "Cannot find live range") Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6374 Summary: Assertion failed: (lr && "Cannot find live range") Product: clang Version: trunk Platform: Other OS/Version: FreeBSD Status: NEW Severity: normal Priority: P5 Component: -New Bugs AssignedTo: unassignedclangbugs at nondot.org ReportedBy: hinokind at gmail.com Estimated Hours: 0.0 Created an attachment (id=4271) --> (http://www.llvm.org/bugs/attachment.cgi?id=4271) testcase Assertion fails when compiling testcase with -O1. $ clang -O1 assert5.c assert5.c:3:1: warning: typedef requires a name [-pedantic] typedef enum ^~~~~~~ assert5.c:16:1: warning: control reaches end of non-void function [-Wreturn-type] } MODRM_TABLE; ^ assert5.c:16:3: warning: type specifier missing, defaults to 'int' [-Wimplicit-int] } MODRM_TABLE; ^ assert5.c:19:1: warning: control reaches end of non-void function [-Wreturn-type] } ^ assert5.c:33:25: warning: excess elements in struct initializer [-pedantic] { 0xD4, 0x1, i386_aam, i386_aam, }, ^~~~~~~~ Assertion failed: (lr && "Cannot find live range"), function JoinIntervals, file SimpleRegisterCoalescing.cpp, line 2300. Stack dump: 0. Program arguments: /usr/local/bin/clang -cc1 -triple x86_64-unknown-freebsd8.0 -S -disable-free -main-file-name assert5.c -mrelocation-model static -mdisable-fp-elim -mconstructor-aliases -munwind-tables -target-cpu x86-64 -resource-dir /usr/local/lib/clang/1.1 -O1 -fmessage-length 157 -fgnu-runtime -fdiagnostics-show-option -fcolor-diagnostics -o /tmp/cc-bzbutr.s -x c assert5.c 1. parser at end of file 2. Code generation 3. Running pass 'Simple Register Coalescing' on function '@i386_aam' clang: error: compiler command failed due to signal 6 (use -v to see invocation) -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 16:03:59 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 16:03:59 -0600 (CST) Subject: [LLVMbugs] [Bug 6372] Unrecognized copy instruction!; UNREACHABLE executed at LiveIntervalAnalysis.cpp:773! In-Reply-To: References: Message-ID: <20100221220359.1B1502A6C11F@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6372 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |stoklund at 2pi.dk -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 16:04:37 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 16:04:37 -0600 (CST) Subject: [LLVMbugs] [Bug 6372] Unrecognized copy instruction!; UNREACHABLE executed at LiveIntervalAnalysis.cpp:773! In-Reply-To: References: Message-ID: <20100221220437.33C522A6C12A@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6372 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu Component|-New Bugs |Common Code Generator Code AssignedTo|unassignedclangbugs at nondot. |unassignedbugs at nondot.org |org | Product|clang |libraries -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 16:05:31 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 16:05:31 -0600 (CST) Subject: [LLVMbugs] [Bug 6374] Assertion failed: (lr && "Cannot find live range") In-Reply-To: References: Message-ID: <20100221220531.ED2222A6C12A@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6374 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu, | |stoklund at 2pi.dk Component|-New Bugs |Common Code Generator Code AssignedTo|unassignedclangbugs at nondot. |unassignedbugs at nondot.org |org | Product|clang |libraries -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 16:13:44 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 16:13:44 -0600 (CST) Subject: [LLVMbugs] [Bug 6361] Clang complains about redeclaring function with a calling convention In-Reply-To: References: Message-ID: <20100221221344.B753B2A6C11F@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6361 Charles Davis changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |cdavis at mymail.mines.edu, | |llvmbugs at cs.uiuc.edu Component|-New Bugs |Semantic Analyzer Summary|Clang doesn't have a |Clang complains about |warning flag for warning: |redeclaring function with a |attribute declaration must |calling convention |precede definition | --- Comment #1 from Charles Davis 2010-02-21 16:13:44 CST --- Like I was saying on IRC, the real bug is not that there's no flag controlling this, but that clang is warning at all. The __cdecl calling convention is the default, so clang should not be warning when a function declared without a calling convention is redeclared as cdecl (or whatever the default is). -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 16:19:17 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 16:19:17 -0600 (CST) Subject: [LLVMbugs] [Bug 6353] clang emits U symbol while gcc emits W one In-Reply-To: References: Message-ID: <20100221221917.3130A2A6C11F@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6353 --- Comment #3 from Rafael ??vila de Esp??ndola 2010-02-21 16:19:16 CST --- Created an attachment (id=4272) --> (http://www.llvm.org/bugs/attachment.cgi?id=4272) testcase reduced it a bit more -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 16:21:09 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 16:21:09 -0600 (CST) Subject: [LLVMbugs] [Bug 6372] Unrecognized copy instruction!; UNREACHABLE executed at LiveIntervalAnalysis.cpp:773! In-Reply-To: References: Message-ID: <20100221222109.5C9572A6C11F@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6372 Anton Korobeynikov changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |asl at math.spbu.ru -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 16:21:47 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 16:21:47 -0600 (CST) Subject: [LLVMbugs] [Bug 6374] Assertion failed: (lr && "Cannot find live range") In-Reply-To: References: Message-ID: <20100221222147.A83EF2A6C11F@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6374 Anton Korobeynikov changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |asl at math.spbu.ru -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 16:36:32 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 16:36:32 -0600 (CST) Subject: [LLVMbugs] [Bug 6375] New: Assertion failed: (Result && "declaration was not instantiated in this scope!") Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6375 Summary: Assertion failed: (Result && "declaration was not instantiated in this scope!") Product: clang Version: trunk Platform: Other OS/Version: FreeBSD Status: NEW Severity: normal Priority: P5 Component: C++ AssignedTo: unassignedclangbugs at nondot.org ReportedBy: hinokind at gmail.com CC: dgregor at apple.com Estimated Hours: 0.0 Created an attachment (id=4273) --> (http://www.llvm.org/bugs/attachment.cgi?id=4273) testcase Assertion fails when compiling the testcase. $ clang++ assert6.cpp < ... > Assertion failed: (Result && "declaration was not instantiated in this scope!"), function getInstantiationOf, file /projects/llvm/tools/clang/lib/Sema/Sema.h, line 3390. Stack dump: 0. Program arguments: /usr/local/bin/clang -cc1 -triple x86_64-unknown-freebsd8.0 -S -disable-free -main-file-name assert6.cpp -mrelocation-model static -mdisable-fp-elim -mconstructor-aliases -munwind-tables -target-cpu x86-64 -resource-dir /usr/local/lib/clang/1.1 -fmessage-length 157 -fexceptions -fgnu-runtime -fdiagnostics-show-option -fcolor-diagnostics -o /tmp/cc-JM895N.s -x c++ assert6.cpp 1. parser at end of file 2. assert6.cpp:28:10: instantiating function definition 'agg::render_ctrl' 3. assert6.cpp:16:10: instantiating function definition 'render_scanlines_aa_solid' 4. assert6.cpp:6:33: instantiating function definition 'agg::rasterizer_scanline_aa::sweep_scanline' clang: error: compiler command failed due to signal 6 (use -v to see invocation) -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 17:15:19 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 17:15:19 -0600 (CST) Subject: [LLVMbugs] [Bug 6376] New: Assertion failed: ((Result || isa(D)) && "Unable to find instantiation of declaration!"), function FindInstantiatedDecl, file SemaTemplateInstantiateDecl.cpp, line 2306. Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6376 Summary: Assertion failed: ((Result || isa(D)) && "Unable to find instantiation of declaration!"), function FindInstantiatedDecl, file SemaTemplateInstantiateDecl.cpp, line 2306. Product: clang Version: trunk Platform: PC OS/Version: All Status: NEW Severity: enhancement Priority: P5 Component: C++ AssignedTo: unassignedclangbugs at nondot.org ReportedBy: ich at az2000.de CC: dgregor at apple.com Estimated Hours: 0.0 [ 4%] Building CXX object CMakeFiles/openlierox.dir/src/gusanos/distortion.o Assertion failed: ((Result || isa(D)) && "Unable to find instantiation of declaration!"), function FindInstantiatedDecl, file SemaTemplateInstantiateDecl.cpp, line 2306. 0 clang 0x01271724 main + 19311232 1 clang 0x01271b8e main + 19312362 2 libSystem.B.dylib 0x954282bb _sigtramp + 43 3 libSystem.B.dylib 0xffffffff _sigtramp + 1790803311 4 libSystem.B.dylib 0x9549c23a raise + 26 5 libSystem.B.dylib 0x954a8679 abort + 73 6 libSystem.B.dylib 0x9549d3db __assert_rtn + 101 7 clang 0x0038e841 main + 3701661 8 clang 0x00360767 main + 3513027 9 clang 0x0037537e main + 3598042 10 clang 0x00379487 main + 3614691 11 clang 0x00374520 main + 3594364 12 clang 0x00374701 main + 3594845 13 clang 0x00374804 main + 3595104 14 clang 0x00374fc1 main + 3597085 15 clang 0x00373ace main + 3591722 16 clang 0x003745aa main + 3594502 17 clang 0x00374701 main + 3594845 18 clang 0x00374804 main + 3595104 19 clang 0x00361f06 main + 3519074 20 clang 0x003620ac main + 3519496 21 clang 0x003624ed main + 3520585 22 clang 0x00363381 main + 3524317 23 clang 0x00397d5a main + 3739830 24 clang 0x0031a832 main + 3226510 25 clang 0x002d302c main + 2933640 26 clang 0x0059fab8 main + 5869076 27 clang 0x0059bfce main + 5853994 28 clang 0x0059defd main + 5861977 29 clang 0x0059e09b main + 5862391 30 clang 0x0059e286 main + 5862882 31 clang 0x005a76be main + 5900826 32 clang 0x0059d427 main + 5859203 33 clang 0x0059defd main + 5861977 34 clang 0x0059bb5c main + 5852856 35 clang 0x0059defd main + 5861977 36 clang 0x0059e09b main + 5862391 37 clang 0x0059e286 main + 5862882 38 clang 0x005a76be main + 5900826 39 clang 0x0059d427 main + 5859203 40 clang 0x0059defd main + 5861977 41 clang 0x0059bb5c main + 5852856 42 clang 0x0059defd main + 5861977 43 clang 0x0059e09b main + 5862391 44 clang 0x0059e286 main + 5862882 45 clang 0x0059f7f5 main + 5868369 46 clang 0x0059bfce main + 5853994 47 clang 0x0059defd main + 5861977 48 clang 0x0059e09b main + 5862391 49 clang 0x0059e5b3 main + 5863695 50 clang 0x005b7dc6 main + 5968162 51 clang 0x005bc60c main + 5986664 52 clang 0x005bcf24 main + 5988992 53 clang 0x005b8065 main + 5968833 54 clang 0x005be7dd main + 5995321 55 clang 0x005b929b main + 5973495 56 clang 0x005b8301 main + 5969501 57 clang 0x005be7dd main + 5995321 58 clang 0x005b929b main + 5973495 59 clang 0x005b8301 main + 5969501 60 clang 0x005bc60c main + 5986664 61 clang 0x005bccdf main + 5988411 62 clang 0x005c750f main + 6031467 63 clang 0x0058ab19 main + 5783157 64 clang 0x005c5a4b main + 6024615 65 clang 0x005c5a98 main + 6024692 66 clang 0x005c6878 main + 6028244 67 clang 0x005c69b6 main + 6028562 68 clang 0x0021a100 main + 2176092 69 clang 0x0003e642 main + 227742 70 clang 0x0003e532 main + 227470 71 clang 0x0002025d main + 103865 72 clang 0x00003114 _mh_execute_header + 8468 73 clang 0x00006d8d main + 233 74 clang 0x00002036 _mh_execute_header + 4150 Stack dump: 0. Program arguments: /Users/az/Programmierung/CppIDE/llvm-src/Debug/bin/clang -cc1 -triple i386-apple-darwin9.0.0 -S -disable-free -main-file-name distortion.cpp -pic-level 1 -mdisable-fp-elim -target-cpu yonah -g -resource-dir /Users/az/Programmierung/CppIDE/llvm-src/Debug/lib/clang/1.1 -DDEBUG=1 -D_AI_DEBUG -D SYSTEM_DATA_DIR="/usr/share/games" -I/Users/az/Programmierung/openlierox/./optional-includes/generated -I/Users/az/Programmierung/openlierox/./include -I/Users/az/Programmierung/openlierox/./src -I/Users/az/Programmierung/openlierox/./libs/pstreams -I/usr/include/libxml2 -I/usr/local/include/libxml2 -I/Users/az/Programmierung/openlierox/./src/breakpad/external/src -I/Users/az/Programmierung/openlierox/./libs/hawknl/include -I/Users/az/Programmierung/openlierox/./libs/libzip -I/Users/az/Programmierung/openlierox/./libs/lua -I/Users/az/Programmierung/openlierox/./build/Xcode/include -I/Users/az/Programmierung/openlierox/./build/Xcode/freealut/include -I/Library/Frameworks/SDL.framework/Headers -I/Library/Frameworks/SDL_image.framework/Headers -I/Library/Frameworks/SDL_mixer.framework/Headers -I/Library/Frameworks/UnixImageIO.framework/Headers -I/Library/Frameworks/GD.framework/Headers -F ./build/Xcode -F/Library/Frameworks -Wall -fmessage-length 144 -pthread -fexceptions -fdiagnostics-show-option -fcolor-diagnostics -o /var/folders/P9/P9wWY+Z8HDeOPixVmDZ0J++++TI/-Tmp-/cc-rpROEP.s -x c++ /Users/az/Programmierung/openlierox/src/gusanos/distortion.cpp 1. /Users/az/Programmierung/openlierox/src/gusanos/distortion.cpp:139:38: current parser token ')' 2. /Users/az/Programmierung/openlierox/src/gusanos/distortion.cpp:133:1: parsing function body 'randomMap' 3. /Users/az/Programmierung/openlierox/src/gusanos/distortion.cpp:133:1: in compound statement ('{}') 4. /Users/az/Programmierung/openlierox/src/gusanos/distortion.cpp:138:2: in compound statement ('{}') clang: error: compiler command failed due to signal 6 (use -v to see invocation) make[2]: *** [CMakeFiles/openlierox.dir/src/gusanos/distortion.o] Error 250 make[1]: *** [CMakeFiles/openlierox.dir/all] Error 2 make: *** [all] Error 2 -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 17:17:47 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 17:17:47 -0600 (CST) Subject: [LLVMbugs] [Bug 6376] Assertion failed: ((Result || isa(D)) && "Unable to find instantiation of declaration!"), function FindInstantiatedDecl, file SemaTemplateInstantiateDecl.cpp, line 2306. In-Reply-To: References: Message-ID: <20100221231747.576D72A6C11F@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6376 --- Comment #1 from Albert Zeyer 2010-02-21 17:17:46 CST --- Created an attachment (id=4274) --> (http://www.llvm.org/bugs/attachment.cgi?id=4274) preproccessed file -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 17:27:46 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 17:27:46 -0600 (CST) Subject: [LLVMbugs] [Bug 6353] clang emits U symbol while gcc emits W one In-Reply-To: References: Message-ID: <20100221232746.904FE2A6C11F@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6353 --- Comment #4 from Rafael ??vila de Esp??ndola 2010-02-21 17:27:46 CST --- looks like the problem is that ~_Rb_tree() is {Ptr = 0} when CodeGenModule::GetOrCreateLLVMFunction is deciding if it should be emitted. As a consequence FD->isThisDeclarationADefinition() returns false and the destructor is not emitted. This is true even if there is some real code in ~_Rb_tree(). -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 17:48:46 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 17:48:46 -0600 (CST) Subject: [LLVMbugs] [Bug 6377] New: Clang doesn't seem to handle expression __label__ foo Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6377 Summary: Clang doesn't seem to handle expression __label__ foo Product: clang Version: trunk Platform: PC OS/Version: Windows NT Status: NEW Severity: normal Priority: P5 Component: -New Bugs AssignedTo: unassignedclangbugs at nondot.org ReportedBy: amine48rz at gmail.com Estimated Hours: 0.0 Here's the testcase : void A () { __label__ foo; static const int a = 0; } Clang emits an error: expected expression __label__ foo; ^ Where gcc doesn't. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 17:51:33 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 17:51:33 -0600 (CST) Subject: [LLVMbugs] [Bug 3429] __label__ not supported In-Reply-To: References: Message-ID: <20100221235133.AADD72A6C124@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=3429 amine48rz changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |amine48rz at gmail.com -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 17:55:00 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 17:55:00 -0600 (CST) Subject: [LLVMbugs] [Bug 6377] Clang doesn't seem to handle expression __label__ foo In-Reply-To: References: Message-ID: <20100221235500.DE3E52A6C11F@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6377 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |DUPLICATE --- Comment #1 from Chris Lattner 2010-02-21 17:55:00 CST --- *** This bug has been marked as a duplicate of bug 3429 *** -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 17:55:01 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 17:55:01 -0600 (CST) Subject: [LLVMbugs] [Bug 3429] __label__ not supported In-Reply-To: References: Message-ID: <20100221235501.21F232A6C12E@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=3429 --- Comment #6 from Chris Lattner 2010-02-21 17:55:00 CST --- *** Bug 6377 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 17:59:07 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 17:59:07 -0600 (CST) Subject: [LLVMbugs] [Bug 6317] Clang gets confused with nested classes and friend declarations In-Reply-To: References: Message-ID: <20100221235907.B5C0E2A6C11F@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6317 Chandler Carruth changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED AssignedTo|unassignedclangbugs at nondot. |chandlerc at gmail.com |org | --- Comment #1 from Chandler Carruth 2010-02-21 17:59:07 CST --- Created an attachment (id=4275) --> (http://www.llvm.org/bugs/attachment.cgi?id=4275) Proposed patch After hours of debugging, one comment from dgregor led me directly to the fix. 5 line delta. =D I'm working on test cases now since it seems this is a rather untested area of C++ for us. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 18:00:08 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 18:00:08 -0600 (CST) Subject: [LLVMbugs] [Bug 6376] Assertion failed: ((Result || isa(D)) && "Unable to find instantiation of declaration!"), function FindInstantiatedDecl, file SemaTemplateInstantiateDecl.cpp, line 2306. In-Reply-To: References: Message-ID: <20100222000008.1E6412A6C127@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6376 --- Comment #2 from Albert Zeyer 2010-02-21 18:00:07 CST --- Just in front of the assert, I added this: PrettyStackTraceActionsDecl CrashInfo(DeclPtrTy::make(D), D->getLocation(), *this, Context.getSourceManager(), "Sema::FindInstantiatedDecl"); // UsingShadowDecls can instantiate to nothing because of using hiding. assert((Result || isa(D)) && "Unable to find instantiation of declaration!"); (Damn cool this PrettyStackTraceActionsDecl! :)) Then I am getting this output: Stack dump: 0. Program arguments: /Users/az/Programmierung/CppIDE/llvm-src/Debug/bin/clang -cc1 -triple i386-apple-darwin9.0.0 -S -disable-free -main-file-name distortion.cpp -pic-level 1 -mdisable-fp-elim -target-cpu yonah -g -resource-dir /Users/az/Programmierung/CppIDE/llvm-src/Debug/lib/clang/1.1 -DDEBUG=1 -D_AI_DEBUG -D SYSTEM_DATA_DIR="/usr/share/games" -I/Users/az/Programmierung/openlierox/./optional-includes/generated -I/Users/az/Programmierung/openlierox/./include -I/Users/az/Programmierung/openlierox/./src -I/Users/az/Programmierung/openlierox/./libs/pstreams -I/usr/include/libxml2 -I/usr/local/include/libxml2 -I/Users/az/Programmierung/openlierox/./src/breakpad/external/src -I/Users/az/Programmierung/openlierox/./libs/hawknl/include -I/Users/az/Programmierung/openlierox/./libs/libzip -I/Users/az/Programmierung/openlierox/./libs/lua -I/Users/az/Programmierung/openlierox/./build/Xcode/include -I/Users/az/Programmierung/openlierox/./build/Xcode/freealut/include -I/Library/Frameworks/SDL.framework/Headers -I/Library/Frameworks/SDL_image.framework/Headers -I/Library/Frameworks/SDL_mixer.framework/Headers -I/Library/Frameworks/UnixImageIO.framework/Headers -I/Library/Frameworks/GD.framework/Headers -F ./build/Xcode -F/Library/Frameworks -Wall -fmessage-length 144 -pthread -fexceptions -fdiagnostics-show-option -fcolor-diagnostics -o /var/folders/P9/P9wWY+Z8HDeOPixVmDZ0J++++TI/-Tmp-/cc-Iz93tI.s -x c++ /Users/az/Programmierung/openlierox/src/gusanos/distortion.cpp 1. /Users/az/Programmierung/openlierox/src/gusanos/distortion.cpp:139:38: current parser token ')' 2. /Users/az/Programmierung/openlierox/src/gusanos/distortion.cpp:133:1: parsing function body 'randomMap' 3. /Users/az/Programmierung/openlierox/src/gusanos/distortion.cpp:133:1: in compound statement ('{}') 4. /Users/az/Programmierung/openlierox/src/gusanos/distortion.cpp:138:2: in compound statement ('{}') 5. /usr/local/include/boost/random/uniform_01.hpp:143:10: Sema::FindInstantiatedDecl 'boost::detail::select_uniform_01::apply' clang: error: compiler command failed due to signal 6 (use -v to see invocation) Not sure if that helps. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 18:05:18 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 18:05:18 -0600 (CST) Subject: [LLVMbugs] [Bug 6353] clang emits U symbol while gcc emits W one In-Reply-To: References: Message-ID: <20100222000518.A22032A6C12A@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6353 --- Comment #5 from Rafael ??vila de Esp??ndola 2010-02-21 18:05:18 CST --- Looking a bit more it looks like the problem is with the template instantiation. Sema::ActOnFinishFunctionBody is being called on the template of the destructor, but never on the instantiated one. That is why setBody is never called. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 18:07:40 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 18:07:40 -0600 (CST) Subject: [LLVMbugs] [Bug 6376] Assertion failed: ((Result || isa(D)) && "Unable to find instantiation of declaration!"), function FindInstantiatedDecl, file SemaTemplateInstantiateDecl.cpp, line 2306. In-Reply-To: References: Message-ID: <20100222000740.8DDC02A6C127@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6376 --- Comment #3 from Albert Zeyer 2010-02-21 18:07:39 CST --- In gdb: Assertion failed: ((Result || isa(D)) && "Unable to find instantiation of declaration!"), function FindInstantiatedDecl, file SemaTemplateInstantiateDecl.cpp, line 2311. Program received signal SIGABRT, Aborted. 0x95429e42 in __kill () (gdb) bt #0 0x95429e42 in __kill () #1 0x95429e34 in kill$UNIX2003 () #2 0x9549c23a in raise () #3 0x954a8679 in abort () #4 0x9549d3db in __assert_rtn () #5 0x0038f249 in clang::Sema::FindInstantiatedDecl (this=0xbfffd980, D=0x4381a10, TemplateArgs=@0xbfff6a20) at SemaTemplateInstantiateDecl.cpp:2310 #6 0x003612bb in (anonymous namespace)::TemplateInstantiator::TransformDecl (this=0xbfff673c, D=0x4381a10) at SemaTemplateInstantiate.cpp:603 #7 0x00375c82 in clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformTemplateName (this=0xbfff673c, Name={Storage = {Val = {Val = {Value = 70792621}}}}, ObjectType={Value = {Value = 0}}) at TreeTransform.h:1859 #8 0x00379d93 in clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformTemplateSpecializationType (this=0xbfff673c, TLB=@0xbfff6444, TL={> = { = { = {Ty = 0x4383630, Data = 0x46ae9e4}, }, }, }, ObjectType={Value = {Value = 0}}) at TreeTransform.h:2896 #9 0x00374df4 in clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformType (this=0xbfff673c, TLB=@0xbfff6444, T={Ty = 0x4383630, Data = 0x46ae9e4}, ObjectType={Value = {Value = 0}}) at TypeNodes.def:84 #10 0x00374fd5 in clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformType (this=0xbfff673c, DI=0x46ae9e0, ObjectType={Value = {Value = 0}}) at TreeTransform.h:2092 #11 0x003750d8 in clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformType (this=0xbfff673c, T={Value = {Value = 70792752}}, ObjectType={Value = {Value = 0}}) at TreeTransform.h:2073 #12 0x003758ad in clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformNestedNameSpecifier (this=0xbfff673c, NNS=0x4383688, Range={B = {ID = 3095960}, E = {ID = 3095960}}, MayBePseudoDestructor=false, ObjectType={Value = {Value = 0}}, FirstQualifierInScope=0x0) at TreeTransform.h:1788 #13 0x003743a2 in clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformTypenameType (this=0xbfff673c, TLB=@0xbfff6664, TL={> = { = {> = { = { = {Ty = 0x43836c0, Data = 0x46ae8a4}, }, }, }, }, }, ObjectType={Value = {Value = 0}}) at TreeTransform.h:2975 #14 0x00374e7e in clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformType (this=0xbfff673c, TLB=@0xbfff6664, T={Ty = 0x43836c0, Data = 0x46ae8a4}, ObjectType={Value = {Value = 0}}) at TypeNodes.def:86 #15 0x00374fd5 in clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformType (this=0xbfff673c, DI=0x46ae8a0, ObjectType={Value = {Value = 0}}) at TreeTransform.h:2092 #16 0x003750d8 in clang::TreeTransform<(anonymous namespace)::TemplateInstantiator>::TransformType (this=0xbfff673c, T={Value = {Value = 70792896}}, ObjectType={Value = {Value = 0}}) at TreeTransform.h:2073 #17 0x00362a62 in clang::Sema::SubstType (this=0xbfffd980, T={Value = {Value = 70792896}}, TemplateArgs=@0xbfff6a20, Loc={ID = 3095960}, Entity={Ptr = 0}) at SemaTemplateInstantiate.cpp:967 #18 0x00362c08 in clang::Sema::SubstBaseSpecifiers (this=0xbfffd980, Instantiation=0x46711c0, Pattern=0x43832b0, TemplateArgs=@0xbfff6a20) at SemaTemplateInstantiate.cpp:1000 #19 0x00363049 in clang::Sema::InstantiateClass (this=0xbfffd980, PointOfInstantiation={ID = 3131}, Instantiation=0x46711c0, Pattern=0x43832b0, TemplateArgs=@0xbfff6a20, TSK=clang::TSK_ImplicitInstantiation, Complain=true) at SemaTemplateInstantiate.cpp:1101 #20 0x00363edd in clang::Sema::InstantiateClassTemplateSpecialization (this=0xbfffd980, PointOfInstantiation={ID = 3131}, ClassTemplateSpec=0x46711c0, TSK=clang::TSK_ImplicitInstantiation, Complain=true) at SemaTemplateInstantiate.cpp:1307 #21 0x00398706 in clang::Sema::RequireCompleteType (this=0xbfffd980, Loc={ID = 3131}, T={Value = {Value = 73863752}}, PD=@0xbfff813c, Note=@0xbfff811c) at SemaType.cpp:1915 #22 0x0031b33a in clang::Sema::BuildCallToObjectOfClassType (this=0xbfffd980, S=0x340d5c0, Object=0x46ae818, LParenLoc={ID = 3131}, Args=0xbfff8580, NumArgs=0, CommaLocs=0xbfff85d0, RParenLoc={ID = 3132}) at SemaOverload.cpp:6168 #23 0x002d3b70 in clang::Sema::ActOnCallExpr (this=0xbfffd980, S=0x340d5c0, fn=@0xbfff86dc, LParenLoc={ID = 3131}, args=@0xbfff86c0, CommaLocs=0xbfff85d0, RParenLoc={ID = 3132}) at SemaExpr.cpp:3519 #24 0x005a08c4 in clang::Parser::ParsePostfixExpressionSuffix (this=0xbfffdfa0, LHS=@0xbfff89cc) at ParseExpr.cpp:984 #25 0x0059cdd2 in clang::Parser::ParseCastExpression (this=0xbfffdfa0, isUnaryExpression=false, isAddressOfOperand=false, NotCastExpr=@0xbfff8e57, TypeOfCast=0x0) at ParseExpr.cpp:667 #26 0x0059ed09 in clang::Parser::ParseCastExpression (this=0xbfffdfa0, isUnaryExpression=false, isAddressOfOperand=false, TypeOfCast=0x0) at ParseExpr.cpp:425 #27 0x0059eea7 in clang::Parser::ParseAssignmentExpression (this=0xbfffdfa0) at ParseExpr.cpp:255 #28 0x0059f092 in clang::Parser::ParseExpressionList (this=0xbfffdfa0, Exprs=@0xbfff9260, CommaLocs=@0xbfff92b0, Completer={__pfn = 0, __delta = 0}, Data=0x0) at ParseExpr.cpp:1529 #29 0x005a873e in clang::Parser::ParseCXXTypeConstructExpression (this=0xbfffdfa0, DS=@0xbfff93c0) at ParseExprCXX.cpp:565 #30 0x0059e22b in clang::Parser::ParseCastExpression (this=0xbfffdfa0, isUnaryExpression=false, isAddressOfOperand=false, NotCastExpr=@0xbfff9a47, TypeOfCast=0x0) at ParseExpr.cpp:805 #31 0x0059ed09 in clang::Parser::ParseCastExpression (this=0xbfffdfa0, isUnaryExpression=false, isAddressOfOperand=false, TypeOfCast=0x0) at ParseExpr.cpp:425 #32 0x0059c960 in clang::Parser::ParseCastExpression (this=0xbfffdfa0, isUnaryExpression=false, isAddressOfOperand=false, NotCastExpr=@0xbfffa157, TypeOfCast=0x0) at ParseExpr.cpp:629 #33 0x0059ed09 in clang::Parser::ParseCastExpression (this=0xbfffdfa0, isUnaryExpression=false, isAddressOfOperand=false, TypeOfCast=0x0) at ParseExpr.cpp:425 #34 0x0059eea7 in clang::Parser::ParseAssignmentExpression (this=0xbfffdfa0) at ParseExpr.cpp:255 #35 0x0059f092 in clang::Parser::ParseExpressionList (this=0xbfffdfa0, Exprs=@0xbfffa560, CommaLocs=@0xbfffa5b0, Completer={__pfn = 0, __delta = 0}, Data=0x0) at ParseExpr.cpp:1529 #36 0x005a873e in clang::Parser::ParseCXXTypeConstructExpression (this=0xbfffdfa0, DS=@0xbfffa6c0) at ParseExprCXX.cpp:565 #37 0x0059e22b in clang::Parser::ParseCastExpression (this=0xbfffdfa0, isUnaryExpression=false, isAddressOfOperand=false, NotCastExpr=@0xbfffad47, TypeOfCast=0x0) at ParseExpr.cpp:805 #38 0x0059ed09 in clang::Parser::ParseCastExpression (this=0xbfffdfa0, isUnaryExpression=false, isAddressOfOperand=false, TypeOfCast=0x0) at ParseExpr.cpp:425 #39 0x0059c960 in clang::Parser::ParseCastExpression (this=0xbfffdfa0, isUnaryExpression=false, isAddressOfOperand=false, NotCastExpr=@0xbfffb457, TypeOfCast=0x0) at ParseExpr.cpp:629 #40 0x0059ed09 in clang::Parser::ParseCastExpression (this=0xbfffdfa0, isUnaryExpression=false, isAddressOfOperand=false, TypeOfCast=0x0) at ParseExpr.cpp:425 #41 0x0059eea7 in clang::Parser::ParseAssignmentExpression (this=0xbfffdfa0) at ParseExpr.cpp:255 #42 0x0059f092 in clang::Parser::ParseExpressionList (this=0xbfffdfa0, Exprs=@0xbfffb5e0, CommaLocs=@0xbfffb630, Completer={__pfn = 0x33d, __delta = 0}, Data=0x46ae7e4) at ParseExpr.cpp:1529 #43 0x005a0601 in clang::Parser::ParsePostfixExpressionSuffix (this=0xbfffdfa0, LHS=@0xbfffba3c) at ParseExpr.cpp:966 #44 0x0059cdd2 in clang::Parser::ParseCastExpression (this=0xbfffdfa0, isUnaryExpression=false, isAddressOfOperand=false, NotCastExpr=@0xbfffbec7, TypeOfCast=0x0) at ParseExpr.cpp:667 #45 0x0059ed09 in clang::Parser::ParseCastExpression (this=0xbfffdfa0, isUnaryExpression=false, isAddressOfOperand=false, TypeOfCast=0x0) at ParseExpr.cpp:425 #46 0x0059eea7 in clang::Parser::ParseAssignmentExpression (this=0xbfffdfa0) at ParseExpr.cpp:255 #47 0x0059f3bf in clang::Parser::ParseExpression (this=0xbfffdfa0) at ParseExpr.cpp:204 #48 0x005b8dd2 in clang::Parser::ParseStatementOrDeclaration (this=0xbfffdfa0, OnlyStatement=false) at ParseStmt.cpp:126 #49 0x005bd618 in clang::Parser::ParseCompoundStatementBody (this=0xbfffdfa0, isStmtExpr=false) at ParseStmt.cpp:469 #50 0x005bdf30 in clang::Parser::ParseCompoundStatement (this=0xbfffdfa0, Attr=0x0, isStmtExpr=false) at ParseStmt.cpp:446 #51 0x005b9071 in clang::Parser::ParseStatementOrDeclaration (this=0xbfffdfa0, OnlyStatement=true) at ParseStmt.cpp:145 #52 0x005bf825 in clang::Parser::ParseStatement (this=0xbfffdfa0) at Parser.h:1071 #53 0x005ba2a7 in clang::Parser::ParseForStatement (this=0xbfffdfa0, Attr=0x0) at ParseStmt.cpp:1071 #54 0x005b930d in clang::Parser::ParseStatementOrDeclaration (this=0xbfffdfa0, OnlyStatement=true) at ParseStmt.cpp:161 #55 0x005bf825 in clang::Parser::ParseStatement (this=0xbfffdfa0) at Parser.h:1071 #56 0x005ba2a7 in clang::Parser::ParseForStatement (this=0xbfffdfa0, Attr=0x0) at ParseStmt.cpp:1071 #57 0x005b930d in clang::Parser::ParseStatementOrDeclaration (this=0xbfffdfa0, OnlyStatement=false) at ParseStmt.cpp:161 #58 0x005bd618 in clang::Parser::ParseCompoundStatementBody (this=0xbfffdfa0, isStmtExpr=false) at ParseStmt.cpp:469 #59 0x005bdceb in clang::Parser::ParseFunctionStatementBody (this=0xbfffdfa0, Decl={Ptr = 0x46ae3e0}) at ParseStmt.cpp:1432 #60 0x005c85f7 in clang::Parser::ParseFunctionDefinition (this=0xbfffdfa0, D=@0xbfffd300, TemplateInfo=@0xbfffd60c) at Parser.cpp:693 #61 0x0058b9a5 in clang::Parser::ParseDeclGroup (this=0xbfffdfa0, DS=@0xbfffd72c, Context=0, AllowFunctionDefinitions=true, DeclEnd=0x0) at ParseDecl.cpp:409 #62 0x005c6b33 in clang::Parser::ParseDeclarationOrFunctionDefinition (this=0xbfffdfa0, DS=@0xbfffd72c, Attr=0x0, AS=clang::AS_none) at Parser.cpp:600 #63 0x005c6b80 in clang::Parser::ParseDeclarationOrFunctionDefinition (this=0xbfffdfa0, Attr=0x0, AS=clang::AS_none) at Parser.cpp:607 #64 0x005c7960 in clang::Parser::ParseExternalDeclaration (this=0xbfffdfa0, Attr={AttrList = 0x0, Range = {B = {ID = 0}, E = {ID = 0}}, HasAttr = false}) at Parser.cpp:496 #65 0x005c7a9e in clang::Parser::ParseTopLevelDecl (this=0xbfffdfa0, Result=@0xbfffe0bc) at Parser.cpp:368 #66 0x0021afec in clang::ParseAST (PP=@0x3401f00, Consumer=0x3405710, Ctx=@0x3823400, PrintStats=false, CompleteTranslationUnit=true, CompletionConsumer=0x0) at ParseAST.cpp:67 #67 0x0003e962 in clang::ASTFrontendAction::ExecuteAction (this=0x3402d20) at FrontendAction.cpp:219 #68 0x0003e852 in clang::FrontendAction::Execute (this=0x3402d20) at FrontendAction.cpp:149 #69 0x0002057d in clang::CompilerInstance::ExecuteAction (this=0xbfffe484, Act=@0x3402d20) at CompilerInstance.cpp:509 #70 0x00003514 in cc1_main (ArgBegin=0xbfffe8c8, ArgEnd=0xbfffe990, Argv0=0xbfffea4c "/Users/az/Programmierung/CppIDE/llvm-src/Debug/bin/clang", MainAddr=0x62e0) at cc1_main.cpp:269 #71 0x0000718d in main (argc=52, argv=0xbfffe8c0) at driver.cpp:209 (gdb) -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 18:31:28 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 18:31:28 -0600 (CST) Subject: [LLVMbugs] [Bug 6364] gcc option -fno-toplevel-reorder separates top level inline asm which affects eglibc In-Reply-To: References: Message-ID: <20100222003128.A8C262A6C124@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6364 --- Comment #7 from Sergey Yakoushkin 2010-02-21 18:31:28 CST --- Wouldn't simple saving of initial lexical order in parser be enough to reorder inlined top level asm to output correctly? I've contacted eglibc maintainers and got the following answer. Seems they expect this option to be supported by compilers: 2010/2/22 Joseph S. Myers : > On Mon, 22 Feb 2010, Sergey Yakoushkin wrote: > >> This option might become deprecated in gcc (~v 4.6), > > That seems an *extremely* unlikely speculation. ?What actual evidence from > GCC development discussions do you have for it? ?I think someone has got > confused by some old discussions of -fno-toplevel-reorder as the > replacement for deprecated -fno-unit-at-a-time into thinking it's > -fno-toplevel-reorder that's deprecated; it's not and is hardly likely to > be. > > -- > Joseph S. Myers > joseph at codesourcery.com > -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 18:51:33 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 18:51:33 -0600 (CST) Subject: [LLVMbugs] [Bug 6353] clang emits U symbol while gcc emits W one In-Reply-To: References: Message-ID: <20100222005133.0E85E2A6C12A@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6353 --- Comment #6 from Rafael ??vila de Esp??ndola 2010-02-21 18:51:32 CST --- Going one level up, the issue is that Sema::MarkDeclarationReferenced is never called on ~_Rb_tree -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 19:35:43 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 19:35:43 -0600 (CST) Subject: [LLVMbugs] [Bug 6353] clang emits U symbol while gcc emits W one In-Reply-To: References: Message-ID: <20100222013543.C10502A6C12A@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6353 --- Comment #7 from Rafael ??vila de Esp??ndola 2010-02-21 19:35:43 CST --- OK, looks like this needs bigger changes to clang than I can get done tonight. If anyone else is interested in fixing this bug, go for it. I might try again next weekend. This is what is happening: We have special code for handing emitting implicit destructors in CodeGenModule::GetOrCreateLLVMFunction. The problem happens when a implicit destructor references an explicit one that is defined in a template. In the testcase the implicit destructor is ~BlockFunction() and the explicit one is ~_Rb_tree(). The problem is that since the special case is on codegen, that is too late to call Sema::MarkDeclarationReferenced. Normally this method is the one that would add the destructor to the PendingImplicitInstantiations list. Being on that list eventually causes InstantiateFunctionDefinition to be called on it and that finally calls setBody. This is not a problem for non-templates since the body is set early on (no instantiation is required). Looks like what we need is to replicated the existing logic from CodeGen into Sema. Template instantiation is a form of code gen anyway :-) Using the attached test as an example, the calls that have to happen are: * ActOnFinishFunctionBody on the implicit ~BlockFunction * MarkBaseAndMemberDestructorsReferenced on ~BlockFunction * MarkDeclarationReferenced on ~_Rb_tree() Another option is to add a ActOnImplicitConstructorOrDestructor. I don't have enough experience on clang to know which one is better. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Sun Feb 21 22:15:29 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 21 Feb 2010 22:15:29 -0600 (CST) Subject: [LLVMbugs] [Bug 6317] Clang gets confused with nested classes and friend declarations In-Reply-To: References: Message-ID: <20100222041529.475E92A6C124@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6317 Chandler Carruth changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #4275|0 |1 is obsolete| | --- Comment #2 from Chandler Carruth 2010-02-21 22:15:28 CST --- Created an attachment (id=4276) --> (http://www.llvm.org/bugs/attachment.cgi?id=4276) Updated patch with testcase Updated patch with testcase. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 03:35:19 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 03:35:19 -0600 (CST) Subject: [LLVMbugs] [Bug 5954] TableGen fails to link because of __progname and environ needed by DSO In-Reply-To: References: Message-ID: <20100222093519.C2EF82A6C124@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=5954 --- Comment #6 from Roman Divacky 2010-02-22 03:35:19 CST --- Created an attachment (id=4277) --> (http://www.llvm.org/bugs/attachment.cgi?id=4277) patch this patch lets me link tblgen with ld 2.20 -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 03:38:57 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 03:38:57 -0600 (CST) Subject: [LLVMbugs] [Bug 6266] clang should compile libstdc++ In-Reply-To: References: Message-ID: <20100222093857.EAA0B2A6C11F@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6266 Ivan Sorokin changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |6251 -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 03:38:58 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 03:38:58 -0600 (CST) Subject: [LLVMbugs] [Bug 6251] inline-optimized program crashes inside libstdc++ In-Reply-To: References: Message-ID: <20100222093858.2E7022A6C12E@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6251 Ivan Sorokin changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |6266 -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 04:29:19 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 04:29:19 -0600 (CST) Subject: [LLVMbugs] [Bug 6378] New: error: illegal storage class on function Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6378 Summary: error: illegal storage class on function Product: clang Version: trunk Platform: PC OS/Version: Windows NT Status: NEW Severity: normal Priority: P5 Component: -New Bugs AssignedTo: unassignedclangbugs at nondot.org ReportedBy: amine48rz at gmail.com Estimated Hours: 0.0 Here's the testcase : void A() { auto void B(){}; }; Clang emits an error : illegal storage class on function auto void B(){}; ^ While gcc is fine with it. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 04:34:16 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 04:34:16 -0600 (CST) Subject: [LLVMbugs] [Bug 6379] New: limits.h "#include_next madness" misses include system limits.h Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6379 Summary: limits.h "#include_next madness" misses include system limits.h Product: clang Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: enhancement Priority: P5 Component: Headers AssignedTo: unassignedclangbugs at nondot.org ReportedBy: evan at chromium.org Estimated Hours: 0.0 Created an attachment (id=4278) --> (http://www.llvm.org/bugs/attachment.cgi?id=4278) patch that implements the above lib/Headers/limits.h includes the following: /* The system's limits.h may, in turn, try to #include_next GCC's limits.h. Avert this #include_next madness. */ #if defined __GNUC__ && !defined _GCC_LIMITS_H_ #define _GCC_LIMITS_H_ #endif And then does an #include_next at the end. I believe that it's intended that the #include_next chain works like this: 1) clang limits.h, include_next -> 2) system limits.h, include_next -> 3) gcc limits.h (which does nothing due to the above #define) However, on my system, the include path ordering (as according to gcc -v) makes it so instead I get the following: 1) clang limits.h, include_next -> 2) *gcc* limits.h, which does nothing At the end of the gcc limits.h, in a !defined(_GCC_LIMITS_H_) branch, it has the following: #ifdef _GCC_NEXT_LIMITS_H #include_next /* recurse down to the real one */ #endif So if we define that macro in the LLVM header, we get the correct behavior: 1) clang limits.h, include_next -> 3) gcc limits.h (which does nothing), include_next -> 2) system limits.h My system is Ubuntu Hardy. % dpkg -s gcc | grep ^Version Version: 4:4.2.3-1ubuntu6 -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 04:34:48 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 04:34:48 -0600 (CST) Subject: [LLVMbugs] [Bug 6379] limits.h "#include_next madness" misses include system limits.h In-Reply-To: References: Message-ID: <20100222103449.016C82A6C124@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6379 Evan Martin changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dgregor at apple.com -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 04:37:51 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 04:37:51 -0600 (CST) Subject: [LLVMbugs] [Bug 6379] limits.h "#include_next madness" misses include system limits.h In-Reply-To: References: Message-ID: <20100222103751.8DD9D2A6C11F@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6379 --- Comment #1 from Evan Martin 2010-02-22 04:37:51 CST --- >From the blame, it appears "mrs" wrote the original "madness" comment, but I can't figure out how to CC him/her on this bug. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 04:41:58 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 04:41:58 -0600 (CST) Subject: [LLVMbugs] [Bug 6379] limits.h "#include_next madness" misses include system limits.h In-Reply-To: References: Message-ID: <20100222104158.9B3C02A6C127@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6379 --- Comment #2 from Evan Martin 2010-02-22 04:41:58 CST --- BTW, my library search path, from touch empty.cpp; gcc -v empty.cpp -fsyntax-only , is /usr/include/c++/4.2 /usr/include/c++/4.2/x86_64-linux-gnu /usr/include/c++/4.2/backward /usr/local/include /usr/lib/gcc/x86_64-linux-gnu/4.2.4/include /usr/include -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 05:28:50 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 05:28:50 -0600 (CST) Subject: [LLVMbugs] [Bug 6380] New: clang crashes during compilation of boost::optional Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6380 Summary: clang crashes during compilation of boost::optional Product: clang Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P5 Component: C++ AssignedTo: unassignedclangbugs at nondot.org ReportedBy: sorokin at rain.ifmo.ru CC: dgregor at apple.com Estimated Hours: 0.0 clang failed to compile the following line: optional t; the error message: ivan at ivan-desktop:~/d/llvm-build/Debug/bin$ ./clang++ 3.cpp 3.cpp:802:45: error: type 'int' cannot be used prior to '::' because it has no members void destroy_impl ( ) { get_ptr_impl()->T::~T() ; } ^ 3.cpp:795:24: note: in instantiation of member function 'boost::optional_detail::optional_base::destroy_impl' requested here ~optional_base() { destroy_impl() ; } ^ 3.cpp:815:47: note: in instantiation of member function 'boost::optional_detail::optional_base::~optional_base' requested here boost::optional_detail::optional_base t; ^ clang: /home/ivan/d/llvm/tools/clang/lib/Sema/TreeTransform.h:1756: clang::NestedNameSpecifier* clang::TreeTransform::TransformNestedNameSpecifier(clang::NestedNameSpecifier*, clang::SourceRange, bool, clang::QualType, clang::NamedDecl*) [with Derived = ::TemplateInstantiator]: Assertion `(Prefix || !ObjectType.isNull()) && "Identifier nested-name-specifier with no prefix or object type"' failed. 0 clang 0x000000000180c892 1 clang 0x000000000180c70b 2 libpthread.so.0 0x00007fa3139d0190 3 libc.so.6 0x00007fa312cd64b5 gsignal + 53 4 libc.so.6 0x00007fa312cd9f50 abort + 384 5 libc.so.6 0x00007fa312ccf481 __assert_fail + 241 6 clang 0x00000000007e2d0d 7 clang 0x00000000007f3b14 8 clang 0x00000000007e2533 9 clang 0x00000000007e9acf 10 clang 0x00000000007e1227 11 clang 0x00000000007e0b1c 12 clang 0x00000000007f9fcb 13 clang 0x00000000007e4819 14 clang 0x00000000007e00e6 15 clang 0x00000000007df4ca 16 clang 0x000000000080ccfc 17 clang 0x000000000080ea5e 18 clang 0x000000000080ce7e 19 clang 0x000000000080ea5e 20 clang 0x00000000006824ae 21 clang 0x0000000000a1e947 22 clang 0x00000000006802bb 23 clang 0x0000000000430dce 24 clang 0x0000000000430a5c 25 clang 0x000000000041b08e 26 clang 0x0000000000408e57 27 clang 0x000000000040db8f main + 259 28 libc.so.6 0x00007fa312cc1abd __libc_start_main + 253 29 clang 0x0000000000407979 Stack dump: 0. Program arguments: /home/ivan/d/llvm-build/Debug/bin/clang -cc1 -triple x86_64-unknown-linux-gnu -S -disable-free -main-file-name 3.cpp -mrelocation-model static -mdisable-fp-elim -mconstructor-aliases -munwind-tables -target-cpu x86-64 -resource-dir /home/ivan/d/llvm-build/Debug/lib/clang/1.1 -fmessage-length 117 -fexceptions -fgnu-runtime -fdiagnostics-show-option -fcolor-diagnostics -o /tmp/cc-6l99GQ.s -x c++ 3.cpp 1. parser at end of file 2. 3.cpp:795:5: instantiating function definition 'boost::optional_detail::optional_base::~optional_base' 3. 3.cpp:802:10: instantiating function definition 'boost::optional_detail::optional_base::destroy_impl' clang: error: compiler command failed due to signal 6 (use -v to see invocation) -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 05:28:59 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 05:28:59 -0600 (CST) Subject: [LLVMbugs] [Bug 6381] New: Variable length arrays are not permitted in C++ Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6381 Summary: Variable length arrays are not permitted in C++ Product: clang Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: enhancement Priority: P5 Component: C++ AssignedTo: unassignedclangbugs at nondot.org ReportedBy: rene at exactcode.de CC: dgregor at apple.com Estimated Hours: 0.0 Starting to play with Clang++ I notices this (building our Open Source ExactImage), currently on x86_64, T2 Linux: lib/Colorspace.cc:442:22: error: variable length arrays are not permitted in C++ uint8_t gray_lookup[vmax]; the code is straight forward variable length array, like: .. const int vmax = 1 << bps; uint8_t gray_lookup[vmax]; The error already indicates it is intentionally disabled in clang++ for C++ Even old (3.x?) versions of G++ happily accept this. Is there an std=c99 like option to allow this in Clang++? Maybe it should accept it by default and warn that it is not portable, GNU extension (but I think present in C++0x)? -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 05:29:12 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 05:29:12 -0600 (CST) Subject: [LLVMbugs] [Bug 6380] clang crashes during compilation of boost::optional In-Reply-To: References: Message-ID: <20100222112912.194472A6C127@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6380 --- Comment #1 from Ivan Sorokin 2010-02-22 05:29:11 CST --- Created an attachment (id=4279) --> (http://www.llvm.org/bugs/attachment.cgi?id=4279) 3.cpp -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 05:30:29 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 05:30:29 -0600 (CST) Subject: [LLVMbugs] [Bug 6380] clang crashes during compilation of boost::optional In-Reply-To: References: Message-ID: <20100222113029.C3E592A6C11F@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6380 --- Comment #2 from Ivan Sorokin 2010-02-22 05:30:29 CST --- I've attached a bit reduced test case. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 05:31:35 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 05:31:35 -0600 (CST) Subject: [LLVMbugs] [Bug 6023] Clang should compile boost In-Reply-To: References: Message-ID: <20100222113135.D254E2A6C12C@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6023 Ivan Sorokin changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |6380 -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 05:31:35 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 05:31:35 -0600 (CST) Subject: [LLVMbugs] [Bug 6380] clang crashes during compilation of boost::optional In-Reply-To: References: Message-ID: <20100222113135.AF9912A6C11F@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6380 Ivan Sorokin changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |6023 -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 05:32:31 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 05:32:31 -0600 (CST) Subject: [LLVMbugs] [Bug 5678] variable length arrays are not permitted in C++ in GNU mode. In-Reply-To: References: Message-ID: <20100222113231.F1CC22A6C12E@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=5678 Ren?? Rebe changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |rene at exactcode.de --- Comment #6 from Ren?? Rebe 2010-02-22 05:32:31 CST --- *** Bug 6381 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 05:32:31 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 05:32:31 -0600 (CST) Subject: [LLVMbugs] [Bug 6381] Variable length arrays are not permitted in C++ In-Reply-To: References: Message-ID: <20100222113231.B99C72A6C127@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6381 Ren?? Rebe changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |DUPLICATE --- Comment #1 from Ren?? Rebe 2010-02-22 05:32:31 CST --- *** This bug has been marked as a duplicate of bug 5678 *** -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 05:33:33 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 05:33:33 -0600 (CST) Subject: [LLVMbugs] [Bug 6382] New: use of undeclared label Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6382 Summary: use of undeclared label Product: clang Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: enhancement Priority: P5 Component: C++ AssignedTo: unassignedclangbugs at nondot.org ReportedBy: rene at exactcode.de CC: dgregor at apple.com Estimated Hours: 0.0 I reduced another real-world source code currently erroring out with clang++ svn:HEAD. As far as I can see it is triggered by crossing class definition with ctor - reduced code fragment: int foo() { goto error; { struct BitPacker { BitPacker() {} }; BitPacker packer; } error: return -1; } While G++ accepts it, clang++ errors out with: test.cc:3:7: error: use of undeclared label 'error' goto error; ^ 1 diagnostic generated. Removing the ctor is enough to make it compile. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 05:35:50 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 05:35:50 -0600 (CST) Subject: [LLVMbugs] [Bug 6383] New: use of undeclared identifier Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6383 Summary: use of undeclared identifier Product: clang Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: enhancement Priority: P5 Component: C++ AssignedTo: unassignedclangbugs at nondot.org ReportedBy: rene at exactcode.de CC: dgregor at apple.com Estimated Hours: 0.0 Another issue, somehow related to name lookup, again reduced from real world code: void test (bool gross) { struct compare_and_set { void operator() (const bool inner, const bool gross = false) { // the code } } compare_and_set2; compare_and_set2 (false, gross); } test.cc:11:28: error: use of undeclared identifier 'gross' compare_and_set2 (false, gross); ^ 1 diagnostic generated. Either renaming the outer, the argument gross or removing the first argument of operator() makes it compile with clang++, ,too. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 05:46:51 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 05:46:51 -0600 (CST) Subject: [LLVMbugs] [Bug 6384] New: initialized if it is a static const integral data member Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6384 Summary: initialized if it is a static const integral data member Product: clang Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: enhancement Priority: P5 Component: C++ AssignedTo: unassignedclangbugs at nondot.org ReportedBy: rene at exactcode.de CC: dgregor at apple.com Estimated Hours: 0.0 Getting another piece of production code to compile the next error is: test.cc:5:26: error: in-class initializer has non-integral, non-enumeration type 'double' While the type is a double in this case. This is tested in the clang testsuite: test/SemaTemplate/instantiate-static-var.cpp template class Y { static const T value = 0; // expected-error{{'value' can only be initialized if it is a static const integral data member}} }; Y fy; // expected-note{{in instantiation of template class 'class Y' requested here}} G++, even including the latest 4.4, does not even warn about this on neither -Wall, nor -Wextra, only with -pedantic. I assume due to this other POD initialization, especially of FP types will occur in quite some shipping code and thus suggest making it a warning by default, likewise. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 06:01:55 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 06:01:55 -0600 (CST) Subject: [LLVMbugs] [Bug 6385] New: __block used in libstdc++ header Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6385 Summary: __block used in libstdc++ header Product: clang Version: trunk Platform: PC OS/Version: All Status: NEW Severity: enhancement Priority: P5 Component: C++ AssignedTo: unassignedclangbugs at nondot.org ReportedBy: chris at bubblescope.net CC: dgregor at apple.com Estimated Hours: 0.0 __block is used in ext/mt_allocator.h in libstdc++. This is similar to bug #4746. Hopefully it will get fixed shortly in libstdc++, but that still will not fix older version. Note that this bug does NOT exist in Apple's release of libstdc++, they renamed __block to __blockguard. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 06:38:43 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 06:38:43 -0600 (CST) Subject: [LLVMbugs] [Bug 6386] New: Incorrect passing of values cast to union Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6386 Summary: Incorrect passing of values cast to union Product: clang Version: trunk Platform: PC OS/Version: All Status: NEW Severity: critical Priority: P5 Component: LLVM Codegen AssignedTo: unassignedclangbugs at nondot.org ReportedBy: richard at tiptree.demon.co.uk CC: llvmbugs at cs.uiuc.edu Estimated Hours: 0.0 When passing a value to a function expecting a union as its argument, it appears that the compiler generates incorrect code so that what's seen inside the function is not the value passed to the function. Last tested using llvm and clang from svn trunk this morning, built on Debian stable 32bit Intel. The following code snippet demonstrates the issue: #include typedef union { int i; void *p; } MyUnion; static void f(MyUnion a) { if (a.p == 0) printf("OK\n"); else printf("Bad value: %p\n", a.p); } int main() { void *a = 0; f((MyUnion)a); return(0); } -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 06:55:43 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 06:55:43 -0600 (CST) Subject: [LLVMbugs] [Bug 6380] clang crashes during compilation of boost::optional In-Reply-To: References: Message-ID: <20100222125543.A60702A6C11F@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6380 --- Comment #3 from Christopher Jefferson 2010-02-22 06:55:43 CST --- Created an attachment (id=4280) --> (http://www.llvm.org/bugs/attachment.cgi?id=4280) Smaller test case -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 07:25:11 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 07:25:11 -0600 (CST) Subject: [LLVMbugs] [Bug 6309] Assertion failed: i != PhysRegsUseOrder.size() && "Couldn't find a register of the appropriate class!", file E:\llvm\lib\CodeGen\RegAllocLocal.cpp, line 422 In-Reply-To: References: Message-ID: <20100222132511.106A82A6C11F@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6309 amine48rz changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #4233|0 |1 is obsolete| | Attachment #4259|0 |1 is obsolete| | --- Comment #6 from amine48rz 2010-02-22 07:25:10 CST --- Created an attachment (id=4281) --> (http://www.llvm.org/bugs/attachment.cgi?id=4281) A reduced testcase. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 08:16:32 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 08:16:32 -0600 (CST) Subject: [LLVMbugs] [Bug 6326] Assert when a class friends itself In-Reply-To: References: Message-ID: <20100222141632.138572A6C124@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6326 Evan Martin changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |evan at chromium.org -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 09:40:51 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 09:40:51 -0600 (CST) Subject: [LLVMbugs] [Bug 6387] New: ice: Cannot use this version of ReplaceAllUsesWith! Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6387 Summary: ice: Cannot use this version of ReplaceAllUsesWith! Product: new-bugs Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: enhancement Priority: P5 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: regehr at cs.utah.edu CC: llvmbugs at cs.uiuc.edu Estimated Hours: 0.0 There are several previous bugs with this symptom but -- unless my searching was poor -- all are marked as resolved. This is seen on Ubuntu 9.10 on x86. regehr at john-home:~/volatile/bugs/tmp266$ clang -Os -c small.c clang: SelectionDAG.cpp:4982: void llvm::SelectionDAG::ReplaceAllUsesWith(llvm::SDNode*, llvm::SDNode*, llvm::SelectionDAG::DAGUpdateListener*): Assertion `(!From->hasAnyUseOfValue(i) || From->getValueType(i) == To->getValueType(i)) && "Cannot use this version of ReplaceAllUsesWith!"' failed. 0 clang 0x09175818 Stack dump: 0. Program arguments: /home/regehr/z/tmp/llvm-gcc-r96770-install/bin/clang -cc1 -triple i386-pc-linux-gnu -S -disable-free -main-file-name small.c -mrelocation-model static -mdisable-fp-elim -mconstructor-aliases -target-cpu pentium4 -resource-dir /home/regehr/z/tmp/llvm-gcc-r96770-install/lib/clang/1.1 -Os -fmessage-length 80 -fgnu-runtime -fdiagnostics-show-option -fcolor-diagnostics -o /tmp/cc-aQzTsS.s -x c small.c 1. parser at end of file 2. Code generation 3. Running pass 'X86 DAG->DAG Instruction Selection' on function '@uint321' clang: error: compiler command failed due to signal 6 (use -v to see invocation) regehr at john-home:~/volatile/bugs/tmp266$ cat small.c typedef unsigned char uint8_t; typedef unsigned int uint32_t; static uint8_t safe_add_func_uint8_t_u_u (uint8_t ui1, uint8_t ui2) { return ui1 + ui2; } uint8_t g_3; int safe (int); void uint321 (void) { uint32_t l_2[1]; int i; for (i = 0; i < 1; i++) l_2[i] = 0; if (safe_add_func_uint8_t_u_u (l_2[0] < (0 != g_3), l_2[0])) { if (safe (1)) { } } } regehr at john-home:~/volatile/bugs/tmp266$ clang -v clang version 1.1 (trunk 96770) Target: i386-pc-linux-gnu Thread model: posix -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 09:41:12 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 09:41:12 -0600 (CST) Subject: [LLVMbugs] [Bug 6387] ice: Cannot use this version of ReplaceAllUsesWith! In-Reply-To: References: Message-ID: <20100222154112.E73022A6C124@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6387 John Regehr changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |chenyang at cs.utah.edu -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 09:50:59 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 09:50:59 -0600 (CST) Subject: [LLVMbugs] [Bug 6369] Assertion failed: (Name.isIdentifier() && "Name is not a simple identifier") In-Reply-To: References: Message-ID: <20100222155059.9C50B2A6C124@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6369 Daniel Dunbar changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |andersca at mac.com, | |daniel at zuster.org -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 09:51:50 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 09:51:50 -0600 (CST) Subject: [LLVMbugs] [Bug 6371] Assertion failed: (TInfo && "couldn't build declarator info for anonymous struct/union") In-Reply-To: References: Message-ID: <20100222155150.AA5F62A6C11F@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6371 Daniel Dunbar changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |daniel at zuster.org, | |dgregor at apple.com, | |kremenek at apple.com, | |llvmbugs at cs.uiuc.edu Component|-New Bugs |Semantic Analyzer -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 09:54:27 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 09:54:27 -0600 (CST) Subject: [LLVMbugs] [Bug 6372] Unrecognized copy instruction!; UNREACHABLE executed at LiveIntervalAnalysis.cpp:773! In-Reply-To: References: Message-ID: <20100222155427.E114B2A6C129@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6372 --- Comment #1 from Daniel Dunbar 2010-02-22 09:54:27 CST --- Created an attachment (id=4282) --> (http://www.llvm.org/bugs/attachment.cgi?id=4282) failing .bc -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 09:54:59 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 09:54:59 -0600 (CST) Subject: [LLVMbugs] [Bug 6372] Unrecognized copy instruction!; UNREACHABLE executed at LiveIntervalAnalysis.cpp:773! In-Reply-To: References: Message-ID: <20100222155459.06AA02A6C127@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6372 Daniel Dunbar changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |daniel at zuster.org --- Comment #2 from Daniel Dunbar 2010-02-22 09:54:58 CST --- Attached a failing LLVM .bc file: -- ddunbar at giles:tmp$ llc < t.opt.bc Unrecognized copy instruction! UNREACHABLE executed at /Volumes/Data/Users/ddunbar/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp:773! 0 llc 0x0000000100c2ddfb PrintStackTrace(void*) + 38 1 llc 0x0000000100c2e389 SignalHandler(int) + 336 2 libSystem.B.dylib 0x00007fff881f4eaa _sigtramp + 26 3 libSystem.B.dylib 0x00007fff5fc0f131 _sigtramp + 3617694369 4 llc 0x0000000100c0cced llvm::llvm_report_error(std::string const&) + 0 5 llc 0x00000001008d48ed llvm::LiveIntervals::getVNInfoSourceReg(llvm::VNInfo const*) const + 529 6 llc 0x00000001009844b4 llvm::SimpleRegisterCoalescing::JoinIntervals(llvm::LiveInterval&, llvm::LiveInterval&, bool&) + 2468 7 llc 0x000000010098aded llvm::SimpleRegisterCoalescing::JoinCopy(llvm::CopyRec&, bool&) + 8085 8 llc 0x000000010098bcb3 llvm::SimpleRegisterCoalescing::CopyCoalesceInMBB(llvm::MachineBasicBlock*, std::vector >&) + 1275 9 llc 0x000000010098bf4c llvm::SimpleRegisterCoalescing::joinIntervals() + 584 10 llc 0x000000010098c317 llvm::SimpleRegisterCoalescing::runOnMachineFunction(llvm::MachineFunction&) + 777 11 llc 0x00000001008fafab llvm::MachineFunctionPass::runOnFunction(llvm::Function&) + 85 12 llc 0x0000000100bae656 llvm::FPPassManager::runOnFunction(llvm::Function&) + 336 13 llc 0x0000000100bb02c9 llvm::FunctionPassManagerImpl::run(llvm::Function&) + 79 14 llc 0x0000000100bb0476 llvm::FunctionPassManager::run(llvm::Function&) + 110 15 llc 0x00000001000317a9 main + 2886 16 llc 0x00000001000304d0 start + 52 17 llc 0x0000000000000001 start + 4294769509 Stack dump: 0. Program arguments: llc 1. Running pass 'Simple Register Coalescing' on function '@foo' Abort trap ddunbar at giles:tmp$ -- -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 10:21:23 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 10:21:23 -0600 (CST) Subject: [LLVMbugs] [Bug 6225] stack corruption with tail recursive calls In-Reply-To: References: Message-ID: <20100222162123.386112A6C129@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6225 Arnold Schwaighofer changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED --- Comment #12 from Arnold Schwaighofer 2010-02-22 10:21:22 CST --- Fixed in 96783. http://llvm.org/viewvc/llvm-project?rev=96783&view=rev -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 10:40:55 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 10:40:55 -0600 (CST) Subject: [LLVMbugs] [Bug 6353] clang emits U symbol while gcc emits W one In-Reply-To: References: Message-ID: <20100222164055.753FC2A6C12A@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6353 Douglas Gregor changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |rjmccall at apple.com --- Comment #8 from Douglas Gregor 2010-02-22 10:40:55 CST --- (In reply to comment #7) > OK, looks like this needs bigger changes to clang than I can get done tonight. > If anyone else is interested in fixing this bug, go for it. I might try again > next weekend. > > This is what is happening: > > We have special code for handing emitting implicit destructors in > CodeGenModule::GetOrCreateLLVMFunction. The problem happens when a implicit > destructor references an explicit one that is defined in a template. In the > testcase the implicit destructor is ~BlockFunction() and the explicit one is > ~_Rb_tree(). This seems like a good place to assert() that Sema did its job and marked the implicit destructor as being used. > The problem is that since the special case is on codegen, that is too late to > call Sema::MarkDeclarationReferenced. Normally this method is the one that > would add the destructor to the PendingImplicitInstantiations list. Being on > that list eventually causes InstantiateFunctionDefinition to be called on it > and that finally calls setBody. Right. > This is not a problem for non-templates since the body is set early on (no > instantiation is required). > > Looks like what we need is to replicated the existing logic from CodeGen into > Sema. Template instantiation is a form of code gen anyway :-) Much of this logic already exists in Sema; we're probably just missing a MarkDeclarationReferenced call where we're implicitly using a destructor. - Doug -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 10:43:36 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 10:43:36 -0600 (CST) Subject: [LLVMbugs] [Bug 6367] [QOI] warn about free functions which shadow one in a namespace In-Reply-To: References: Message-ID: <20100222164336.0F0332A6C127@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6367 Douglas Gregor changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |quality-of-implementation --- Comment #1 from Douglas Gregor 2010-02-22 10:43:35 CST --- It's kind of like -Wmissing-prototypes for C++. It should not apply to templates or member functions. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 10:47:27 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 10:47:27 -0600 (CST) Subject: [LLVMbugs] [Bug 6388] New: AC_HUGE_VAL_CHECK overwrite CXXFLAGS Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6388 Summary: AC_HUGE_VAL_CHECK overwrite CXXFLAGS Product: Build scripts Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: enhancement Priority: P5 Component: autoconf AssignedTo: unassignedbugs at nondot.org ReportedBy: yann at droneaud.fr CC: llvmbugs at cs.uiuc.edu Estimated Hours: 0.0 Created an attachment (id=4283) --> (http://www.llvm.org/bugs/attachment.cgi?id=4283) Fix AC_HUGE_VAL_CHECK macro While trying to add flags needed to build LLVM with atomic gcc builtins, I've found a problem in the AC_HUGE_VAL_CHECK test defined in autoconf/m4/huge_val.m4 . The test sets CXXFLAGS to -pedantic and does not restore the previous value of CXXFLAGS. Here is a patch that fix the behavor of the test. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 10:50:29 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 10:50:29 -0600 (CST) Subject: [LLVMbugs] [Bug 6369] Assertion failed: (Name.isIdentifier() && "Name is not a simple identifier") In-Reply-To: References: Message-ID: <20100222165029.553502A6C11F@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6369 Douglas Gregor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Douglas Gregor 2010-02-22 10:50:28 CST --- Crash fixed here: http://lists.cs.uiuc.edu/pipermail/cfe-commits/Week-of-Mon-20100222/027792.html And changed the name of the environment variable we respond to to CLANG_VTABLE_DEBUG, here: http://lists.cs.uiuc.edu/pipermail/cfe-commits/Week-of-Mon-20100222/027793.html -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 10:57:16 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 10:57:16 -0600 (CST) Subject: [LLVMbugs] [Bug 6389] New: LLVM build system ignores compilation flags given to ./configure script Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6389 Summary: LLVM build system ignores compilation flags given to ./configure script Product: Build scripts Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: enhancement Priority: P5 Component: Makefiles AssignedTo: unassignedbugs at nondot.org ReportedBy: yann at droneaud.fr CC: llvmbugs at cs.uiuc.edu Estimated Hours: 0.0 While trying to add flags to build LLVM with gcc's atomic builtins, I've found that LLVM makefile don't make any use of flags given to ./configure such as: ./configure CXXFLAGS="-O2 -g -march=native" CFLAGS="-O2 -g -march=native" Without any -march flags, gcc is building for i386 architecture by default on my system and atomics functions are not available, so I need to add such flags in order to ./configure script to found gcc's atomic builtins. But those flags are also needed later in build, otherwise LLVM build failed, for example: llvm/Debug+Checks/lib/libLLVMSystem.a(Atomic.o): In function `llvm::sys::AtomicAdd(unsigned int volatile*, unsigned int)': llvm/lib/System/Atomic.cpp:86: undefined reference to `__sync_add_and_fetch_4' llvm/Debug+Checks/lib/libLLVMSystem.a(Atomic.o): In function `llvm::sys::AtomicDecrement(unsigned int volatile*)': llvm/lib/System/Atomic.cpp:73: undefined reference to `__sync_sub_and_fetch_4' llvm/Debug+Checks/lib/libLLVMSystem.a(Atomic.o): In function `llvm::sys::CompareAndSwap(unsigned int volatile*, unsigned int, unsigned int)': llvm/lib/System/Atomic.cpp:47: undefined reference to `__sync_val_compare_and_swap_4' The build system uses those flags, without the ones specified on ./configure command line: g++ -g -fPIC -Woverloaded-virtual -pedantic -Wno-long-long -Wall -W -Wno-unused-parameter -Wwrite-strings -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 10:58:33 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 10:58:33 -0600 (CST) Subject: [LLVMbugs] [Bug 6389] LLVM build system ignores compilation flags given to ./configure script In-Reply-To: References: Message-ID: <20100222165833.473412A6C124@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6389 --- Comment #1 from Yann Droneaud 2010-02-22 10:58:33 CST --- Fixing this bug could help for bug #5595 too. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 11:00:21 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 11:00:21 -0600 (CST) Subject: [LLVMbugs] [Bug 6389] LLVM build system ignores compilation flags given to ./configure script In-Reply-To: References: Message-ID: <20100222170021.AF41B2A6C124@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6389 --- Comment #2 from Yann Droneaud 2010-02-22 11:00:21 CST --- Putting flags on ./configure command line is the preferred method. See ./configure --help: `configure' configures llvm 2.6 to adapt to many kinds of systems. Usage: ./configure [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. [...] Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory CPPFLAGS C/C++/Objective C preprocessor flags, e.g. -I if you have headers in a nonstandard directory CPP C preprocessor CXX C++ compiler command CXXFLAGS C++ compiler flags CXXCPP C++ preprocessor F77 Fortran 77 compiler command FFLAGS Fortran 77 compiler flags Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 11:02:03 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 11:02:03 -0600 (CST) Subject: [LLVMbugs] [Bug 6389] LLVM build system ignores compilation flags given to ./configure script In-Reply-To: References: Message-ID: <20100222170203.96E8E2A6C11F@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6389 Duncan Sands changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |baldrick at free.fr --- Comment #3 from Duncan Sands 2010-02-22 11:02:03 CST --- I regularly do this and it works: CC=gcc-4.5 CXX=g++-4.5 ./configure As far as I know this is how you are supposed to do it. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 11:06:34 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 11:06:34 -0600 (CST) Subject: [LLVMbugs] [Bug 6389] LLVM build system ignores compilation flags given to ./configure script In-Reply-To: References: Message-ID: <20100222170634.9A38D2A6C124@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6389 --- Comment #4 from Yann Droneaud 2010-02-22 11:06:34 CST --- (In reply to comment #3) > I regularly do this and it works: > > CC=gcc-4.5 CXX=g++-4.5 ./configure > > As far as I know this is how you are supposed to do it. First, this is not the recommended way to specify environment variables for ./configure scripts, see comment #2. Second, you're giving compiler name, not flags. It's probably not concerned by this bug report. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 11:17:23 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 11:17:23 -0600 (CST) Subject: [LLVMbugs] [Bug 6353] clang emits U symbol while gcc emits W one In-Reply-To: References: Message-ID: <20100222171723.AB89A2A6C12A@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6353 --- Comment #9 from Rafael ??vila de Esp??ndola 2010-02-22 11:17:23 CST --- Created an attachment (id=4284) --> (http://www.llvm.org/bugs/attachment.cgi?id=4284) add asserts to the codegen -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 11:18:13 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 11:18:13 -0600 (CST) Subject: [LLVMbugs] [Bug 6353] clang emits U symbol while gcc emits W one In-Reply-To: References: Message-ID: <20100222171813.5AA5F2A6C12A@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6353 Rafael ??vila de Esp??ndola changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #4268|0 |1 is obsolete| | Attachment #4272|0 |1 is obsolete| | --- Comment #10 from Rafael ??vila de Esp??ndola 2010-02-22 11:18:12 CST --- Created an attachment (id=4285) --> (http://www.llvm.org/bugs/attachment.cgi?id=4285) testcase. With the asserts in place the testcase can be a bit smaller. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 11:40:55 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 11:40:55 -0600 (CST) Subject: [LLVMbugs] [Bug 6389] LLVM build system ignores compilation flags given to ./configure script In-Reply-To: References: Message-ID: <20100222174056.304532A6C124@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6389 --- Comment #5 from Yann Droneaud 2010-02-22 11:40:55 CST --- As a workaround, I have to specify the flags twice: one time for ./configure and a second time as make's arguments. ./configure CXXFLAGS="-O2 -g -march=native" CFLAGS="-O2 -g -march=native" make CXXFLAGS+="-O2 -g -march=native" CFLAGS+="-O2 -g -march=native" But it is not expected and prone to error: each time I re-run make I have to remember to add the correct flags on command line. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 11:49:19 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 11:49:19 -0600 (CST) Subject: [LLVMbugs] [Bug 6389] LLVM build system ignores compilation flags given to ./configure script In-Reply-To: References: Message-ID: <20100222174919.426672A6C127@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6389 --- Comment #6 from Duncan Sands 2010-02-22 11:49:18 CST --- Does it work if you specify the flags using the style I mentioned, i.e. VAR=VALUE ... ./configure ? If so, that's informative. If not, that's informative too! -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 11:50:43 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 11:50:43 -0600 (CST) Subject: [LLVMbugs] [Bug 6390] New: Setting VERBOSE=1 in Makefile.config is invalid in test/Makefile Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6390 Summary: Setting VERBOSE=1 in Makefile.config is invalid in test/Makefile Product: Build scripts Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: enhancement Priority: P5 Component: Makefiles AssignedTo: unassignedbugs at nondot.org ReportedBy: yann at droneaud.fr CC: llvmbugs at cs.uiuc.edu Estimated Hours: 0.0 I'm using VERBOSE=1 in Makefile.config in order to see compilation flags used. But this is a problem when running make check: runtest failed with argument "1". Indeed, test/Makefile have this: ifdef VERBOSE RUNTESTFLAGS := $(VERBOSE) LIT_ARGS := -v else LIT_ARGS := -s -v endif So it fails with: make[1]: Entering directory `llvm/test' Making a new site.exp file... ( ulimit -t 600 ; ulimit -d 512000 ; ulimit -m 512000 ; ulimit -v 512000 ; \ PATH="llvm/Debug+Checks/bin:llvm/test/Scripts:/bin:/usr/lib/ccache/bin:/opt/llvm/bin:/opt/wine/bin:/bin:/usr/bin:/usr/local/bin:/usr/bin/X11:/usr/games" \ /usr/bin/runtest 1 --ignore "llvm2cpp.exp" ) WARNING: Couldn't find the global config file. Illegal Argument "1" try "runtest --help" for option list make[1]: *** [check-local] Error 1 -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 11:54:18 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 11:54:18 -0600 (CST) Subject: [LLVMbugs] [Bug 6380] clang crashes during compilation of boost::optional In-Reply-To: References: Message-ID: <20100222175418.EB5862A6C127@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6380 Ivan Sorokin changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #4279|0 |1 is obsolete| | Attachment #4280|0 |1 is obsolete| | --- Comment #4 from Ivan Sorokin 2010-02-22 11:54:18 CST --- Created an attachment (id=4286) --> (http://www.llvm.org/bugs/attachment.cgi?id=4286) 4.cpp the very small test case -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 11:55:09 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 11:55:09 -0600 (CST) Subject: [LLVMbugs] [Bug 6380] clang crashes during compilation of boost::optional In-Reply-To: References: Message-ID: <20100222175509.EA3AE2A6C11F@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6380 Douglas Gregor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED --- Comment #5 from Douglas Gregor 2010-02-22 11:55:09 CST --- I beat my head against this one on Saturday; tackling it again now. -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:02:35 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:02:35 -0600 (CST) Subject: [LLVMbugs] [Bug 6365] Assertion failed: (Access != AS_none && "Access specifier is AS_none inside a record decl") In-Reply-To: References: Message-ID: <20100222180235.E7D612A6C11F@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6365 --- Comment #9 from Douglas Gregor 2010-02-22 12:02:35 CST --- I've tweaked the assertion so that we don't perform the access check for invalid declarations: http://lists.cs.uiuc.edu/pipermail/cfe-commits/Week-of-Mon-20100222/027796.html -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:10:37 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:10:37 -0600 (CST) Subject: [LLVMbugs] [Bug 6391] New: runtest (dejagnu) failed to find config.guess Message-ID: http://www.llvm.org/bugs/show_bug.cgi?id=6391 Summary: runtest (dejagnu) failed to find config.guess Product: Build scripts Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: enhancement Priority: P5 Component: Makefiles AssignedTo: unassignedbugs at nondot.org ReportedBy: yann at droneaud.fr CC: llvmbugs at cs.uiuc.edu Estimated Hours: 0.0 When make check is run, runtest failed with this error message: $ make VERBOSE="-v -v -v -v" check llvm[0]: Running test suite make[1]: Entering directory `llvm/test' Making a new site.exp file... ( ulimit -t 600 ; ulimit -d 512000 ; ulimit -m 512000 ; ulimit -v 512000 ; \ PATH="llvm/Debug+Checks/bin:llvm/test/Scripts:/bin:/usr/lib/ccache/bin:/opt/llvm/bin:/opt/wine/bin:/bin:/usr/bin:/usr/local/bin:/usr/bin/X11:/usr/games" \ /usr/bin/runtest -v -v -v -v --ignore "llvm2cpp.exp" ) Expect binary is /usr/bin/expect Looking for /usr/share/dejagnu/runtest.exp. Using /usr/share/dejagnu/runtest.exp as main test driver Verbose level is 4 Login name is XXXXXXXX Looking for ~/.dejagnurc Looking for llvm/test/site.exp Found llvm/test/site.exp Using test sources in llvm/test Using test binaries in llvm/test Tool root directory is llvm Using /usr/share/dejagnu to find libraries Looking for /usr/share/dejagnu/config.guess Looking for /usr/share/dejagnu/libexec/config.guess Looking for /usr/share/dejagnu/../config.guess Looking for /usr/share/dejagnu/config.guess Looking for llvm/test/config.guess Looking for llvm/test/../config.guess Looking for llvm/test/../../config.guess ERROR: Couldn't find config.guess program. make[1]: *** [check-local] Error 1 make: *** [check] Error 2 According to global configuration file runtest.exp, config.guess is only necessary if target_triplet and host_triplet are not defined. But target_triplet is defined in test/site.exp. As a workaround, I'm creating a symlink from autoconf/config.guess in the root source directory, and runtest is happy. This could be a bug in runtest, a problem on my installation, or a build system bug : according to runtest manual, target_triplet should be defined on command line. For the record, I'm using dejagnu-1.4.4 and expect 5.43.0, both from Mandriva: dejagnu-1.4.4-8mdv2009.1 and expect-5.43.0-16mdv2009.1). -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:13:59 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:13:59 -0600 (CST) Subject: [LLVMbugs] [Bug 6332] Assertion failed: (Ty->isSized() && "Cannot getTypeInfo() on a type that is unsized!") In-Reply-To: References: Message-ID: <20100222181359.3F4862A6C124@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6332 Andrius Morkunas changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |hinokind at gmail.com -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:14:04 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:14:04 -0600 (CST) Subject: [LLVMbugs] [Bug 4445] Erorr with template pack expansion inside decltype In-Reply-To: References: Message-ID: <20100222181404.8B3D32A6C129@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=4445 Douglas Gregor changed: What |Removed |Added ---------------------------------------------------------------------------- Component|C++ |C++0x -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:14:12 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:14:12 -0600 (CST) Subject: [LLVMbugs] [Bug 4503] Implement C++0x integral constant expression semantics In-Reply-To: References: Message-ID: <20100222181412.BE10A2A6C127@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=4503 Douglas Gregor changed: What |Removed |Added ---------------------------------------------------------------------------- Component|C++ |C++0x -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:15:14 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:15:14 -0600 (CST) Subject: [LLVMbugs] [Bug 5290] decltype doesn't inspect expression type correctly In-Reply-To: References: Message-ID: <20100222181514.8DB002A6C11F@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=5290 Douglas Gregor changed: What |Removed |Added ---------------------------------------------------------------------------- Component|C++ |C++0x -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:32:06 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:32:06 -0600 (CST) Subject: [LLVMbugs] [Bug 6388] AC_HUGE_VAL_CHECK overwrite CXXFLAGS In-Reply-To: References: Message-ID: <20100222183206.202F12A6C129@llvm.org> http://www.llvm.org/bugs/show_bug.cgi?id=6388 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |echristo at gmail.com -- Configure bugmail: http://www.llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:34:38 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:34:38 -0600 (CST) Subject: [LLVMbugs] [Bugzilla] Your account llvmbugs@cs.uiuc.edu is being impersonated Message-ID: <20100222183438.B99B52A6C124@llvm.org> Chris Lattner has used the 'sudo' feature to access Bugzilla using your account. Chris Lattner provided the following reason for doing this: playing with the mailing list. If you feel that this action was inappropriate, please contact tonic at nondot.org. For more information on this feature, visit . From bugzilla-daemon at llvm.org Mon Feb 22 12:40:56 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:40:56 -0600 (CST) Subject: [LLVMbugs] [Bug 347] Regression/Transforms/InstCombine/load.ll Fails In-Reply-To: References: Message-ID: <20100222184056.72ACB2A6C127@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=347 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:40:56 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:40:56 -0600 (CST) Subject: [LLVMbugs] [Bug 843] llvm-gcc4: libstdc++ missing LTHUNKs In-Reply-To: References: Message-ID: <20100222184056.9BCCC2A6C12A@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=843 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:40:56 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:40:56 -0600 (CST) Subject: [LLVMbugs] [Bug 1291] sys::Path enhancement: add PathWithStatus In-Reply-To: References: Message-ID: <20100222184056.F38742A6C130@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1291 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:40:57 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:40:57 -0600 (CST) Subject: [LLVMbugs] [Bug 1510] xor-inferring optimizations would be nice In-Reply-To: References: Message-ID: <20100222184057.74C112A6C134@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1510 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:40:57 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:40:57 -0600 (CST) Subject: [LLVMbugs] [Bug 1252] Read-after-free bug in llvm-gcc In-Reply-To: References: Message-ID: <20100222184057.F3ADB2A6C138@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1252 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:40:58 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:40:58 -0600 (CST) Subject: [LLVMbugs] [Bug 241] Test Suite stops when programs fail to compile In-Reply-To: References: Message-ID: <20100222184058.41A9D2A6C131@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=241 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:40:58 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:40:58 -0600 (CST) Subject: [LLVMbugs] [Bug 1215] can't constantfold sdiv 0, -1 In-Reply-To: References: Message-ID: <20100222184058.8B0DF2A6C13F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1215 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:40:58 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:40:58 -0600 (CST) Subject: [LLVMbugs] [Bug 138] Archive reader does not understand 4.4BSD/Mac OS X long filenames In-Reply-To: References: Message-ID: <20100222184058.EF2E72A6C139@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=138 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:40:59 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:40:59 -0600 (CST) Subject: [LLVMbugs] [Bug 1] Need to add product version numbers In-Reply-To: References: Message-ID: <20100222184059.B42A02A6C13A@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:00 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:00 -0600 (CST) Subject: [LLVMbugs] [Bug 4836] Linker can't find __builtin_isnan . In-Reply-To: References: Message-ID: <20100222184101.009152A6C142@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4836 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:03 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:03 -0600 (CST) Subject: [LLVMbugs] [Bug 4218] index.html of report files sometimes have first letters cut off in "file" column In-Reply-To: References: Message-ID: <20100222184103.889822A6C14B@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4218 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:11 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:11 -0600 (CST) Subject: [LLVMbugs] [Bug 4826] cannot compile C++ constructor with dependent arg and nontrivial member In-Reply-To: References: Message-ID: <20100222184111.6F7D22A6C12E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4826 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:12 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:12 -0600 (CST) Subject: [LLVMbugs] [Bug 3988] clang : extern inline function are not externally visible In-Reply-To: References: Message-ID: <20100222184112.550AB2A6C12E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3988 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:40:59 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:40:59 -0600 (CST) Subject: [LLVMbugs] [Bug 3189] SEMA does not look up a protocol's full inheritance chain when looking for a method declaration In-Reply-To: References: Message-ID: <20100222184059.DFE932A6C141@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3189 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:40:59 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:40:59 -0600 (CST) Subject: [LLVMbugs] [Bug 894] LTO : avoid using system specific path for tmp file In-Reply-To: References: Message-ID: <20100222184059.80AA52A6C135@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=894 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:02 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:02 -0600 (CST) Subject: [LLVMbugs] [Bug 6117] provide special diagnostic for overload failure due to incomplete argument type In-Reply-To: References: Message-ID: <20100222184102.D3E432A6C14D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6117 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:02 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:02 -0600 (CST) Subject: [LLVMbugs] [Bug 4997] strange error in parsing malformed attributes In-Reply-To: References: Message-ID: <20100222184102.6B38B2A6C12E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4997 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:14 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:14 -0600 (CST) Subject: [LLVMbugs] [Bug 5326] Clang needs support for _Complex_I and _Imaginary_I as intrinsics. In-Reply-To: References: Message-ID: <20100222184114.8ACA32A6C134@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5326 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:01 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:01 -0600 (CST) Subject: [LLVMbugs] [Bug 3437] clang creates preprocessed file that is refused by itself: # 0 In-Reply-To: References: Message-ID: <20100222184101.AFCC32A6C148@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3437 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:15 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:15 -0600 (CST) Subject: [LLVMbugs] [Bug 5515] clang c++ declaration+definition of array doesn't merge array size In-Reply-To: References: Message-ID: <20100222184115.667732A6C12E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5515 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:04 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:04 -0600 (CST) Subject: [LLVMbugs] [Bug 4381] clang incorrectly rejects templated class inheriting from member type of templated class In-Reply-To: References: Message-ID: <20100222184104.556832A6C133@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4381 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:03 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:03 -0600 (CST) Subject: [LLVMbugs] [Bug 55] [loopsimplify] Loop simplify crashes In-Reply-To: References: Message-ID: <20100222184103.EA68D2A6C12A@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=55 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:05 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:05 -0600 (CST) Subject: [LLVMbugs] [Bug 291] [llvm-g++] Cleanups and gotos don't mix properly In-Reply-To: References: Message-ID: <20100222184105.EA22F2A6C150@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=291 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:00 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:00 -0600 (CST) Subject: [LLVMbugs] [Bug 4644] gcc -M and -MM options not recognised by ccc-analyser In-Reply-To: References: Message-ID: <20100222184100.5CBF02A6C137@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4644 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:08 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:08 -0600 (CST) Subject: [LLVMbugs] [Bug 6091] clang: diagnostic could be more helpful for integer vs pointer typo In-Reply-To: References: Message-ID: <20100222184108.6B7D72A6C154@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6091 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:06 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:06 -0600 (CST) Subject: [LLVMbugs] [Bug 206] [sparc] Solaris C++ front-end references unknown functions In-Reply-To: References: Message-ID: <20100222184106.B99FB2A6C14F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=206 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:07 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:07 -0600 (CST) Subject: [LLVMbugs] [Bug 3514] false positive `dead initialization` warning for init to global In-Reply-To: References: Message-ID: <20100222184107.64A3C2A6C151@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3514 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:08 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:08 -0600 (CST) Subject: [LLVMbugs] [Bug 3969] Warn about dangling interior pointers in GC-enabled apps In-Reply-To: References: Message-ID: <20100222184108.46EBA2A6C158@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3969 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:09 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:09 -0600 (CST) Subject: [LLVMbugs] [Bug 2941] False Positive missing dealloc on NSManagedObject subclasses In-Reply-To: References: Message-ID: <20100222184109.8903F2A6C159@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2941 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:09 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:09 -0600 (CST) Subject: [LLVMbugs] [Bug 1427] MMX shuffle is not properly selected. In-Reply-To: References: Message-ID: <20100222184109.C34D42A6C138@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1427 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:13 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:13 -0600 (CST) Subject: [LLVMbugs] [Bug 526] Native linking applications produces __llvm_sjljeh_* undefined ref In-Reply-To: References: Message-ID: <20100222184113.666792A6C12E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=526 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:08 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:08 -0600 (CST) Subject: [LLVMbugs] [Bug 603] [llvm-gcc] CFE does not lay out structures correctly when funny darwin rules apply In-Reply-To: References: Message-ID: <20100222184108.CF3972A6C14C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=603 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:09 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:09 -0600 (CST) Subject: [LLVMbugs] [Bug 678] A non-working NAG fortran front-end shouldn't stop configure In-Reply-To: References: Message-ID: <20100222184109.15DAC2A6C144@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=678 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:10 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:10 -0600 (CST) Subject: [LLVMbugs] [Bug 511] [cbackend] C backend does not respect 'volatile' In-Reply-To: References: Message-ID: <20100222184110.9807C2A6C124@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=511 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:10 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:10 -0600 (CST) Subject: [LLVMbugs] [Bug 815] Build LLVM with -fno-exceptions In-Reply-To: References: Message-ID: <20100222184110.314C72A6C13F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=815 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:11 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:11 -0600 (CST) Subject: [LLVMbugs] [Bug 4042] `inline' is not compliant with the specs In-Reply-To: References: Message-ID: <20100222184112.05B432A6C12A@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4042 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:12 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:12 -0600 (CST) Subject: [LLVMbugs] [Bug 1042] Verifier doesn't catch invalid invoke use In-Reply-To: References: Message-ID: <20100222184112.8DD772A6C133@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1042 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:07 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:07 -0600 (CST) Subject: [LLVMbugs] [Bug 619] Makefiles don't rebuild headers generated from .in files. In-Reply-To: References: Message-ID: <20100222184107.E0F8C2A6C13D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=619 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:13 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:13 -0600 (CST) Subject: [LLVMbugs] [Bug 2796] parser rejects on wine-1.1.4: clang rejects "attributes" in function pointer arguments In-Reply-To: References: Message-ID: <20100222184113.99D262A6C135@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2796 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:15 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:15 -0600 (CST) Subject: [LLVMbugs] [Bug 1171] Eliminate domset from LLVM In-Reply-To: References: Message-ID: <20100222184115.A84B92A6C135@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1171 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:14 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:14 -0600 (CST) Subject: [LLVMbugs] [Bug 638] Test Regression/CodeGen/X86/2004-02-08-UnwindSupport.llx fails In-Reply-To: References: Message-ID: <20100222184114.29EA32A6C12E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=638 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:19 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:19 -0600 (CST) Subject: [LLVMbugs] [Bug 5848] clang crashes when instantiating a class template that has a nested friend class tempalte In-Reply-To: References: Message-ID: <20100222184119.50DB12A6C124@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5848 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:14 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:14 -0600 (CST) Subject: [LLVMbugs] [Bug 1260] Need MMX support for Qt operations In-Reply-To: References: Message-ID: <20100222184114.D1C6F2A6C12A@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1260 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:19 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:19 -0600 (CST) Subject: [LLVMbugs] [Bug 1381] [x86] Implement the -fmerge-constants optimization In-Reply-To: References: Message-ID: <20100222184119.D0C0D2A6C13A@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1381 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:01 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:01 -0600 (CST) Subject: [LLVMbugs] [Bug 1317] CommandLine fails with loadable modules. In-Reply-To: References: Message-ID: <20100222184101.77C2C2A6C143@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1317 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:01 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:01 -0600 (CST) Subject: [LLVMbugs] [Bug 5451] Multiple declarations of global variable yet no error message In-Reply-To: References: Message-ID: <20100222184101.E041F2A6C145@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5451 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:15 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:15 -0600 (CST) Subject: [LLVMbugs] [Bug 1184] ScheduleDAG.cpp patch: error message more meaningful. In-Reply-To: References: Message-ID: <20100222184116.025672A6C144@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1184 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:21 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:21 -0600 (CST) Subject: [LLVMbugs] [Bug 6098] [False Positive] Functions calling exit() assumed to return In-Reply-To: References: Message-ID: <20100222184121.52CF52A6C143@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6098 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:03 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:03 -0600 (CST) Subject: [LLVMbugs] [Bug 584] [simplifycfg] Crash on degenerate PHI node In-Reply-To: References: Message-ID: <20100222184103.1CC102A6C146@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=584 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:05 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:05 -0600 (CST) Subject: [LLVMbugs] [Bug 1115] Cannot handle multiple ASM constraints In-Reply-To: References: Message-ID: <20100222184105.9EEEB2A6C13B@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1115 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:07 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:07 -0600 (CST) Subject: [LLVMbugs] [Bug 2580] False positive CF leak involving 'autorelease' wrapper In-Reply-To: References: Message-ID: <20100222184107.1D5082A6C140@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2580 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:02 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:02 -0600 (CST) Subject: [LLVMbugs] [Bug 1196] ValueSymTab::insert can loop infinitely In-Reply-To: References: Message-ID: <20100222184102.9B6222A6C149@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1196 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:06 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:06 -0600 (CST) Subject: [LLVMbugs] [Bug 5115] VS2008 Win64 project created by CMAKE is missing a dependency In-Reply-To: References: Message-ID: <20100222184106.8A9682A6C13C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5115 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:04 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:04 -0600 (CST) Subject: [LLVMbugs] [Bug 1396] llvm-gcc can't compile limits.h on Linux In-Reply-To: References: Message-ID: <20100222184104.B7EA82A6C14A@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1396 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:16 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:16 -0600 (CST) Subject: [LLVMbugs] [Bug 249] [X86] Missing cast from ULong -> Double, cast FP -> bool and support for -9223372036854775808 In-Reply-To: References: Message-ID: <20100222184116.B4AB22A6C130@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=249 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:05 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:05 -0600 (CST) Subject: [LLVMbugs] [Bug 576] [bugpoint] JIT debugger generates really inefficient function stubs In-Reply-To: References: Message-ID: <20100222184105.2B5352A6C14E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=576 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:17 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:17 -0600 (CST) Subject: [LLVMbugs] [Bug 309] [vmcore] Code quality problem due to long operand of getelementptr In-Reply-To: References: Message-ID: <20100222184117.06EFD2A6C12A@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=309 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:08 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:08 -0600 (CST) Subject: [LLVMbugs] [Bug 5957] "exception specification does not match..." with new operator In-Reply-To: References: Message-ID: <20100222184108.998932A6C155@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5957 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:17 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:17 -0600 (CST) Subject: [LLVMbugs] [Bug 1400] LLVM frontend crashes when compiling a header file with implementation In-Reply-To: References: Message-ID: <20100222184117.7C6E12A6C139@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1400 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:22 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:22 -0600 (CST) Subject: [LLVMbugs] [Bug 1482] Compiling generated .c file (by llc) on Linux X86 fails In-Reply-To: References: Message-ID: <20100222184122.E5D912A6C133@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1482 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:20 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:20 -0600 (CST) Subject: [LLVMbugs] [Bug 186] Need weak linkage on memory functions to make them overridable In-Reply-To: References: Message-ID: <20100222184120.504422A6C142@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=186 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:18 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:18 -0600 (CST) Subject: [LLVMbugs] [Bug 338] llc miscompiles Obsequi on x86 In-Reply-To: References: Message-ID: <20100222184118.8B7AB2A6C13C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=338 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:18 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:18 -0600 (CST) Subject: [LLVMbugs] [Bug 38] [bugpoint] "Non-instruction is using an external function" In-Reply-To: References: Message-ID: <20100222184118.B7A322A6C142@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=38 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:18 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:18 -0600 (CST) Subject: [LLVMbugs] [Bug 5479] Using directives cannot refer to namespace aliases In-Reply-To: References: Message-ID: <20100222184118.17DF52A6C13D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5479 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:24 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:24 -0600 (CST) Subject: [LLVMbugs] [Bug 1448] Pointer to invalid memory kept In-Reply-To: References: Message-ID: <20100222184124.4DD6D2A6C135@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1448 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:20 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:20 -0600 (CST) Subject: [LLVMbugs] [Bug 5939] ternary operator argument forces bitfield to be int (?) In-Reply-To: References: Message-ID: <20100222184120.2D9472A6C12D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5939 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:25 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:25 -0600 (CST) Subject: [LLVMbugs] [Bug 5791] Track source locations in nested name specifiers In-Reply-To: References: Message-ID: <20100222184125.554992A6C140@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5791 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:20 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:20 -0600 (CST) Subject: [LLVMbugs] [Bug 959] update to cfrontend README.LLVM due to assembler breakage In-Reply-To: References: Message-ID: <20100222184120.AFC912A6C13C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=959 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:21 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:21 -0600 (CST) Subject: [LLVMbugs] [Bug 5969] analyzer forgets infeasible constraint on 'default' case In-Reply-To: References: Message-ID: <20100222184121.099F12A6C13A@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5969 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:23 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:23 -0600 (CST) Subject: [LLVMbugs] [Bug 2991] Static Analyzer: memory leak false-negative In-Reply-To: References: Message-ID: <20100222184123.86DF02A6C12E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2991 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:21 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:21 -0600 (CST) Subject: [LLVMbugs] [Bug 975] crtstuff.c breaks llvm-gcc build In-Reply-To: References: Message-ID: <20100222184121.A1CCC2A6C12F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=975 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:22 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:22 -0600 (CST) Subject: [LLVMbugs] [Bug 696] [simplifylibcalls] Error: generation of floorf on systems that don't have it In-Reply-To: References: Message-ID: <20100222184122.15B602A6C133@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=696 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:24 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:24 -0600 (CST) Subject: [LLVMbugs] [Bug 6000] VTT wrong In-Reply-To: References: Message-ID: <20100222184124.971C52A6C140@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6000 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:23 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:23 -0600 (CST) Subject: [LLVMbugs] [Bug 6069] experimental abort with free In-Reply-To: References: Message-ID: <20100222184123.4B4F02A6C135@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6069 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:25 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:25 -0600 (CST) Subject: [LLVMbugs] [Bug 2653] Please make an RSS feed of the changelogs of the static analyzer In-Reply-To: References: Message-ID: <20100222184125.205B82A6C133@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2653 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:25 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:25 -0600 (CST) Subject: [LLVMbugs] [Bug 6281] function not marked inline In-Reply-To: References: Message-ID: <20100222184126.0278B2A6C12E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6281 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:26 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:26 -0600 (CST) Subject: [LLVMbugs] [Bug 4633] Unused result warning despite cast to void In-Reply-To: References: Message-ID: <20100222184126.41D532A6C133@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4633 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:26 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:26 -0600 (CST) Subject: [LLVMbugs] [Bug 333] Sparc backend cannot emit 2 fns of same name, both w/ constant pools In-Reply-To: References: Message-ID: <20100222184126.BEE702A6C135@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=333 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:32 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:32 -0600 (CST) Subject: [LLVMbugs] [Bug 1672] legalizer doesn't scalarize illegal vector return correctly in some cases In-Reply-To: References: Message-ID: <20100222184132.C5B122A6C162@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1672 Dan Gohman changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |DUPLICATE --- Comment #4 from Dan Gohman 2008-09-08 10:28:41 CDT --- This is being tracked with PR2660. *** This bug has been marked as a duplicate of bug 2660 *** -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:33 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:33 -0600 (CST) Subject: [LLVMbugs] [Bug 5523] clang c++ codegen incorrect linkage for inline member function In-Reply-To: References: Message-ID: <20100222184133.2BE622A6C155@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5523 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:33 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:33 -0600 (CST) Subject: [LLVMbugs] [Bug 3135] false positive with uninitialized values In-Reply-To: References: Message-ID: <20100222184133.79CB32A6C15A@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3135 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:33 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:33 -0600 (CST) Subject: [LLVMbugs] [Bug 101] [setjmp/longjmp] Linking C programs which use setjmp/longjmp sometimes fail with references to the C++ runtime library! In-Reply-To: References: Message-ID: <20100222184133.D27D02A6C161@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=101 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:34 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:34 -0600 (CST) Subject: [LLVMbugs] [Bug 5973] missing check for final overrider In-Reply-To: References: Message-ID: <20100222184134.2B1C32A6C145@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5973 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:34 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:34 -0600 (CST) Subject: [LLVMbugs] [Bug 367] etags fails on cygwin: argument list too long In-Reply-To: References: Message-ID: <20100222184134.8CA742A6C130@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=367 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:36 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:36 -0600 (CST) Subject: [LLVMbugs] [Bug 76] gccld prints filenames twice in verbose mode In-Reply-To: References: Message-ID: <20100222184136.93D082A6C151@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=76 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:38 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:38 -0600 (CST) Subject: [LLVMbugs] [Bug 6326] Assert when a class friends itself In-Reply-To: References: Message-ID: <20100222184138.3F54A2A6C139@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6326 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:39 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:39 -0600 (CST) Subject: [LLVMbugs] [Bug 999] X86 Assert: Cannot pop empty stack In-Reply-To: References: Message-ID: <20100222184140.026792A6C133@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=999 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:36 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:36 -0600 (CST) Subject: [LLVMbugs] [Bug 984] test/C++Frontend/2003-11-02-WeakLinkage.cpp.tr xfailed In-Reply-To: References: Message-ID: <20100222184136.CA3512A6C164@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=984 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:34 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:34 -0600 (CST) Subject: [LLVMbugs] [Bug 119] [sparc] Clean up assembly emitter: integrate classes, remove GlobalIdTable In-Reply-To: References: Message-ID: <20100222184134.ED68D2A6C133@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=119 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:35 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:35 -0600 (CST) Subject: [LLVMbugs] [Bug 1097] Strength reduction misses IV reuse opportunities on 64-bit targets In-Reply-To: References: Message-ID: <20100222184135.37D1E2A6C15E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1097 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:38 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:38 -0600 (CST) Subject: [LLVMbugs] [Bug 395] [llvm-gcc] internal flag for Construct On First Use should be char In-Reply-To: References: Message-ID: <20100222184138.B95692A6C168@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=395 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:35 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:35 -0600 (CST) Subject: [LLVMbugs] [Bug 424] [llvmgcc] llvmgcc emits invalid constant exprs! In-Reply-To: References: Message-ID: <20100222184135.7EE2B2A6C135@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=424 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:35 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:35 -0600 (CST) Subject: [LLVMbugs] [Bug 172] [sparc] lli fails on Regression/ExecutionEngine/test-cast In-Reply-To: References: Message-ID: <20100222184135.D6B0F2A6C163@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=172 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:42 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:42 -0600 (CST) Subject: [LLVMbugs] [Bug 2810] Crashes from checker-93 In-Reply-To: References: Message-ID: <20100222184142.EF16F2A6C149@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2810 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:37 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:37 -0600 (CST) Subject: [LLVMbugs] [Bug 1495] LSR can produce invalid SSA when value reuse occurs In-Reply-To: References: Message-ID: <20100222184137.2DFA92A6C161@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1495 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:37 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:37 -0600 (CST) Subject: [LLVMbugs] [Bug 5608] problems parsing conditional expressions In-Reply-To: References: Message-ID: <20100222184137.92A8C2A6C133@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5608 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:28 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:28 -0600 (CST) Subject: [LLVMbugs] [Bug 963] ldecod has undefined behavior, fails in x86 jit on linux In-Reply-To: References: Message-ID: <20100222184128.4E17D2A6C149@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=963 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:37 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:37 -0600 (CST) Subject: [LLVMbugs] [Bug 831] indvars pass asserts with recent patch In-Reply-To: References: Message-ID: <20100222184137.BF4452A6C145@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=831 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:28 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:28 -0600 (CST) Subject: [LLVMbugs] [Bug 1330] llvm-upgrade fails to upgrade @llvm.memcpy intrinsic properly In-Reply-To: References: Message-ID: <20100222184128.8F90D2A6C14D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1330 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:43 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:43 -0600 (CST) Subject: [LLVMbugs] [Bug 922] llvm-gcc3 determines source filename incorrectly for errors and debug info In-Reply-To: References: Message-ID: <20100222184143.EAAD52A6C135@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=922 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:27 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:27 -0600 (CST) Subject: [LLVMbugs] [Bug 5074] invalid decl merging error In-Reply-To: References: Message-ID: <20100222184127.E36222A6C142@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5074 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:31 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:31 -0600 (CST) Subject: [LLVMbugs] [Bug 1435] licm breaks volatile store in multiply-nested loops In-Reply-To: References: Message-ID: <20100222184131.974362A6C159@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1435 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:43 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:43 -0600 (CST) Subject: [LLVMbugs] [Bug 268] [llvm-gcc] Incorrect code generation for pointer subtraction In-Reply-To: References: Message-ID: <20100222184143.68F892A6C135@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=268 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:40:57 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:40:57 -0600 (CST) Subject: [LLVMbugs] [Bug 6294] clang c++ assertion "operator delete missing - EmitDtorEpilogue" In-Reply-To: References: Message-ID: <20100222184057.BF8E82A6C136@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6294 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:48 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:48 -0600 (CST) Subject: [LLVMbugs] [Bug 1145] Support nothrow attribute on function calls In-Reply-To: References: Message-ID: <20100222184148.EB6FA2A6C159@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1145 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:43 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:43 -0600 (CST) Subject: [LLVMbugs] [Bug 5705] Explicit inline in class definition does not prevent a function from being the key function In-Reply-To: References: Message-ID: <20100222184143.B028F2A6C146@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5705 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:44 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:44 -0600 (CST) Subject: [LLVMbugs] [Bug 5542] clang should infer the type of a native array passed by reference In-Reply-To: References: Message-ID: <20100222184144.8A5282A6C136@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5542 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:49 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:49 -0600 (CST) Subject: [LLVMbugs] [Bug 1067] PIC codegen for Linux/X86 In-Reply-To: References: Message-ID: <20100222184149.703D62A6C135@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1067 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:45 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:45 -0600 (CST) Subject: [LLVMbugs] [Bug 5347] clang should allow accessing a base class field in a partail specialization of a class template In-Reply-To: References: Message-ID: <20100222184145.9BFD22A6C145@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5347 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:27 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:27 -0600 (CST) Subject: [LLVMbugs] [Bug 4606] RFE: Detect code which depends (critically) on order of evaluation rules In-Reply-To: References: Message-ID: <20100222184127.4B9872A6C143@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4606 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:46 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:46 -0600 (CST) Subject: [LLVMbugs] [Bug 5911] Assertion failed: (getContext().getCanonicalType(ArgType.getNonReferenceType()). getTypePtr() == getContext().getCanonicalType(Arg->getType()).getTypePtr() && "type mismatch in call argument!"), function EmitCallArgs, file CodeGenFunction.h, line 1277. In-Reply-To: References: Message-ID: <20100222184146.3A9B72A6C145@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5911 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:29 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:29 -0600 (CST) Subject: [LLVMbugs] [Bug 1489] X86: when SSE1 isn't available, f32 arguments are incorrectly passes as f64 In-Reply-To: References: Message-ID: <20100222184129.555F02A6C14E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1489 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:32 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:32 -0600 (CST) Subject: [LLVMbugs] [Bug 964] switch lowering makes ugly code for a simple scanning loop In-Reply-To: References: Message-ID: <20100222184132.496322A6C15D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=964 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:39 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:39 -0600 (CST) Subject: [LLVMbugs] [Bug 5736] "No unary operator for overloaded function" assertion failure In-Reply-To: References: Message-ID: <20100222184139.1F32D2A6C135@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5736 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:28 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:28 -0600 (CST) Subject: [LLVMbugs] [Bug 6249] Error instantiating function template where template argument refers to a function In-Reply-To: References: Message-ID: <20100222184128.D1B012A6C140@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6249 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:39 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:39 -0600 (CST) Subject: [LLVMbugs] [Bug 552] unexpected tree node in friend_accessible_p In-Reply-To: References: Message-ID: <20100222184139.B9D202A6C142@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=552 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:32 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:32 -0600 (CST) Subject: [LLVMbugs] [Bug 1015] -indvars miscompilation of Qt In-Reply-To: References: Message-ID: <20100222184132.8114C2A6C14F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1015 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:38 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:38 -0600 (CST) Subject: [LLVMbugs] [Bug 757] miscompilation of code In-Reply-To: References: Message-ID: <20100222184138.6FA1E2A6C167@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=757 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:39 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:39 -0600 (CST) Subject: [LLVMbugs] [Bug 24] Lots of spelling/grammar problems abound In-Reply-To: References: Message-ID: <20100222184139.6FDA52A6C151@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=24 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:27 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:27 -0600 (CST) Subject: [LLVMbugs] [Bug 1503] dom tree is not preserved for lcssa in some situation In-Reply-To: References: Message-ID: <20100222184127.929F02A6C148@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1503 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:41 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:41 -0600 (CST) Subject: [LLVMbugs] [Bug 3681] ccc -m32 doesn't work In-Reply-To: References: Message-ID: <20100222184141.55A2D2A6C12F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3681 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:31 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:31 -0600 (CST) Subject: [LLVMbugs] [Bug 5581] Assertion failed: (0 && "Unable to handle InitListExpr"), In-Reply-To: References: Message-ID: <20100222184131.285E52A6C152@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5581 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:41 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:41 -0600 (CST) Subject: [LLVMbugs] [Bug 25] When compiling with -O3, global functions are being marked link-once and deleted by optimizer! In-Reply-To: References: Message-ID: <20100222184141.E01662A6C12F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=25 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:44 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:44 -0600 (CST) Subject: [LLVMbugs] [Bug 911] ICE during compilation of program In-Reply-To: References: Message-ID: <20100222184144.E4FFF2A6C135@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=911 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:30 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:30 -0600 (CST) Subject: [LLVMbugs] [Bug 151] -load options output incorrectly when linking c++ prog In-Reply-To: References: Message-ID: <20100222184130.9721B2A6C154@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=151 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:40 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:40 -0600 (CST) Subject: [LLVMbugs] [Bug 4964] [inline asm] early clobber breaks output vars with >= -O In-Reply-To: References: Message-ID: <20100222184140.862D92A6C135@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4964 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:42 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:42 -0600 (CST) Subject: [LLVMbugs] [Bug 623] request for -malloc2alloca optimization pass In-Reply-To: References: Message-ID: <20100222184142.75BED2A6C12E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=623 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:42 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:42 -0600 (CST) Subject: [LLVMbugs] [Bug 6241] allocating a new struct fails In-Reply-To: References: Message-ID: <20100222184142.A89952A6C139@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6241 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:42 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:42 -0600 (CST) Subject: [LLVMbugs] [Bug 5067] clang/C++: issue warning when iterators from different variables are compared In-Reply-To: References: Message-ID: <20100222184142.28FEE2A6C140@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5067 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:46 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:46 -0600 (CST) Subject: [LLVMbugs] [Bug 433] Avoid running tablegen if not necessary In-Reply-To: References: Message-ID: <20100222184146.7C75E2A6C135@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=433 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:47 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:47 -0600 (CST) Subject: [LLVMbugs] [Bug 1412] x86 regressions on 2.0 release In-Reply-To: References: Message-ID: <20100222184147.68FA82A6C145@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1412 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:48 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:48 -0600 (CST) Subject: [LLVMbugs] [Bug 3885] MacRuby warning: expression result unused In-Reply-To: References: Message-ID: <20100222184148.9764A2A6C158@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3885 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:54 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:54 -0600 (CST) Subject: [LLVMbugs] [Bug 5440] ICE: early clobber assertion failed In-Reply-To: References: Message-ID: <20100222184154.2E4222A6C146@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5440 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:48 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:48 -0600 (CST) Subject: [LLVMbugs] [Bug 5418] Assertion failed: (!Ty.hasQualifiers() &&"Constructor type must be unqualified"), function getCXXSpecialName, file DeclarationName.cpp, line 352. In-Reply-To: References: Message-ID: <20100222184148.B824C2A6C145@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5418 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:49 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:49 -0600 (CST) Subject: [LLVMbugs] [Bug 1356] [inlineasm] integer mem input uses int operand as address instead of value In-Reply-To: References: Message-ID: <20100222184149.C38882A6C15E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1356 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:55 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:55 -0600 (CST) Subject: [LLVMbugs] [Bug 405] llvm projects need some improvements In-Reply-To: References: Message-ID: <20100222184155.0FB7F2A6C148@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=405 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:50 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:50 -0600 (CST) Subject: [LLVMbugs] [Bug 5700] Assert on invalid nested-name-specifier containing function template specialization In-Reply-To: References: Message-ID: <20100222184150.2BFD22A6C133@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5700 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:50 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:50 -0600 (CST) Subject: [LLVMbugs] [Bug 387] Need -Woverloaded-virtual To Catch Inheritance Errors In-Reply-To: References: Message-ID: <20100222184150.72DB32A6C139@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=387 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:49 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:49 -0600 (CST) Subject: [LLVMbugs] [Bug 4627] crash on class field initialization In-Reply-To: References: Message-ID: <20100222184149.E7C452A6C136@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4627 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:51 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:51 -0600 (CST) Subject: [LLVMbugs] [Bug 6262] gcc 4.3.3 fails to build with clang In-Reply-To: References: Message-ID: <20100222184151.7F0602A6C161@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6262 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:56 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:56 -0600 (CST) Subject: [LLVMbugs] [Bug 5772] CIndex.cpp assumes Dl_info provided In-Reply-To: References: Message-ID: <20100222184156.A65CA2A6C151@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5772 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:46 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:46 -0600 (CST) Subject: [LLVMbugs] [Bug 1239] Cannot promote llvm.powi.f32 In-Reply-To: References: Message-ID: <20100222184146.0E6AB2A6C149@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1239 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:52 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:52 -0600 (CST) Subject: [LLVMbugs] [Bug 1475] bbb In-Reply-To: References: Message-ID: <20100222184152.161AC2A6C148@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1475 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:57 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:57 -0600 (CST) Subject: [LLVMbugs] [Bug 5549] clang c++ codegen crash with virtual heirarchy (trying to generate unnecessary thunk?) In-Reply-To: References: Message-ID: <20100222184157.CB0662A6C136@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5549 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:52 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:52 -0600 (CST) Subject: [LLVMbugs] [Bug 3191] Assertion hit in eliminateFrameIndex(). In-Reply-To: References: Message-ID: <20100222184152.D55FA2A6C133@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3191 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:54 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:54 -0600 (CST) Subject: [LLVMbugs] [Bug 448] [asmwritergen] Factor common instruction patterns In-Reply-To: References: Message-ID: <20100222184154.5E9F62A6C157@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=448 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:59 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:59 -0600 (CST) Subject: [LLVMbugs] [Bug 1429] 403.gcc CBE output causes GCC to ICE In-Reply-To: References: Message-ID: <20100222184159.3CE202A6C139@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1429 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:59 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:59 -0600 (CST) Subject: [LLVMbugs] [Bug 6107] clang is confused by out-of-line definition of inner class In-Reply-To: References: Message-ID: <20100222184159.AAA5D2A6C151@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6107 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:00 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:00 -0600 (CST) Subject: [LLVMbugs] [Bug 773] assertion triggered in x86 backend. (SelectionDAG operands not correctly expanded/legalized?) In-Reply-To: References: Message-ID: <20100222184200.DDA2E2A6C146@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=773 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:51 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:51 -0600 (CST) Subject: [LLVMbugs] [Bug 480] [llvmg++] explicit instantiation of static template var does not have weak linkage In-Reply-To: References: Message-ID: <20100222184151.2E76D2A6C139@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=480 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:56 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:56 -0600 (CST) Subject: [LLVMbugs] [Bug 1546] PowerPC tests failing on Solaris In-Reply-To: References: Message-ID: <20100222184156.6698B2A6C133@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1546 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:50 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:50 -0600 (CST) Subject: [LLVMbugs] [Bug 6207] clang misunderstands special member functions when they are declared friend. In-Reply-To: References: Message-ID: <20100222184150.AF1582A6C145@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6207 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:01 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:01 -0600 (CST) Subject: [LLVMbugs] [Bug 5342] clang asserts on instantiating a template that instantiates another class template with a ctor that has a default argument In-Reply-To: References: Message-ID: <20100222184201.68AE12A6C144@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5342 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:57 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:57 -0600 (CST) Subject: [LLVMbugs] [Bug 5068] clang/C++: better error when parameter type mismatched In-Reply-To: References: Message-ID: <20100222184157.241CC2A6C157@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5068 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:02 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:02 -0600 (CST) Subject: [LLVMbugs] [Bug 4550] track linear constraints In-Reply-To: References: Message-ID: <20100222184202.B2DA52A6C144@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4550 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:51 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:51 -0600 (CST) Subject: [LLVMbugs] [Bug 112] casting a string constant to void crashes llvm-gcc In-Reply-To: References: Message-ID: <20100222184151.B3EF62A6C162@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=112 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:58 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:58 -0600 (CST) Subject: [LLVMbugs] [Bug 236] [inliner] Error inlining intrinsic calls into invoke instructions In-Reply-To: References: Message-ID: <20100222184158.4715D2A6C159@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=236 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:58 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:58 -0600 (CST) Subject: [LLVMbugs] [Bug 2663] Request for unreachable code analysis In-Reply-To: References: Message-ID: <20100222184158.79F2D2A6C139@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2663 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:52 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:52 -0600 (CST) Subject: [LLVMbugs] [Bug 4674] Crash when declaring a union with non-POD struct type In-Reply-To: References: Message-ID: <20100222184152.4273F2A6C164@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4674 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:52 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:52 -0600 (CST) Subject: [LLVMbugs] [Bug 5221] TASK: clang should be able to build itself, correctly. In-Reply-To: References: Message-ID: <20100222184152.6E7592A6C158@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5221 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:47 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:47 -0600 (CST) Subject: [LLVMbugs] [Bug 5999] thunk not output In-Reply-To: References: Message-ID: <20100222184147.180882A6C142@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5999 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:58 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:58 -0600 (CST) Subject: [LLVMbugs] [Bug 5106] Use of inline produces undefined references In-Reply-To: References: Message-ID: <20100222184158.C52A02A6C145@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5106 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:56 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:56 -0600 (CST) Subject: [LLVMbugs] [Bug 4098] [Linux kernel] packed attribute on enums unsupported In-Reply-To: References: Message-ID: <20100222184156.DD8D72A6C140@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4098 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:05 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:05 -0600 (CST) Subject: [LLVMbugs] [Bug 6342] clang passes wrong options to assembler In-Reply-To: References: Message-ID: <20100222184205.187FD2A6C164@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6342 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:57 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:57 -0600 (CST) Subject: [LLVMbugs] [Bug 763] [llvmgcc4] needs transparent IPO support In-Reply-To: References: Message-ID: <20100222184157.6121E2A6C146@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=763 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:00 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:00 -0600 (CST) Subject: [LLVMbugs] [Bug 122] [code-cleanup] SymbolTable class cleanup, Type should not derive from Value, eliminate ConstantPointerRef class In-Reply-To: References: Message-ID: <20100222184200.1CE422A6C145@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=122 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:00 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:00 -0600 (CST) Subject: [LLVMbugs] [Bug 6123] RFE: check malloc sizes are multiple of access type In-Reply-To: References: Message-ID: <20100222184200.582272A6C15E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6123 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:00 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:00 -0600 (CST) Subject: [LLVMbugs] [Bug 228] [sparc] Boolean constants are emitted as true and false In-Reply-To: References: Message-ID: <20100222184200.9E85E2A6C145@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=228 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:01 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:01 -0600 (CST) Subject: [LLVMbugs] [Bug 2457] gfortran.dg/assumed_charlen_function_5.f90 has multiple compile failures In-Reply-To: References: Message-ID: <20100222184201.227222A6C15D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2457 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:54 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:54 -0600 (CST) Subject: [LLVMbugs] [Bug 1189] llvm-convert.cpp - intrinsic getOrInsertFunction calls should be replaced by Intrinsic::getDeclaration In-Reply-To: References: Message-ID: <20100222184154.9704E2A6C165@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1189 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:06 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:06 -0600 (CST) Subject: [LLVMbugs] [Bug 1093] llvm.va_* intrinsics vary in type In-Reply-To: References: Message-ID: <20100222184206.3D0252A6C15E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1093 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:55 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:55 -0600 (CST) Subject: [LLVMbugs] [Bug 130] [vmcore] Symbol table doesn't rename colliding variables during type resolution In-Reply-To: References: Message-ID: <20100222184155.81F892A6C14E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=130 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:05 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:05 -0600 (CST) Subject: [LLVMbugs] [Bug 902] asmparser doesn't detect errors soon enough In-Reply-To: References: Message-ID: <20100222184206.004DD2A6C142@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=902 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:01 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:01 -0600 (CST) Subject: [LLVMbugs] [Bug 1232] constant propagation doesn't work through unrolled loops In-Reply-To: References: Message-ID: <20100222184201.AF26E2A6C142@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1232 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:02 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:02 -0600 (CST) Subject: [LLVMbugs] [Bug 1144] bad codegen of memmove In-Reply-To: References: Message-ID: <20100222184202.7532F2A6C14E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1144 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:53 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:53 -0600 (CST) Subject: [LLVMbugs] [Bug 985] -fno-inline-functions should disable function inlining In-Reply-To: References: Message-ID: <20100222184153.8E1582A6C155@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=985 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:07 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:07 -0600 (CST) Subject: [LLVMbugs] [Bug 3952] CFG: @finally code is executed for any 'exit' from a @try block In-Reply-To: References: Message-ID: <20100222184207.F0EF12A6C145@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3952 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:03 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:03 -0600 (CST) Subject: [LLVMbugs] [Bug 1518] Alias analysis chaining doesn't work In-Reply-To: References: Message-ID: <20100222184203.866942A6C139@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1518 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:03 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:03 -0600 (CST) Subject: [LLVMbugs] [Bug 1494] Linking fails when using "static const double" field In-Reply-To: References: Message-ID: <20100222184203.3A5722A6C155@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1494 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:09 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:09 -0600 (CST) Subject: [LLVMbugs] [Bug 4692] "friends cannot be members of the declaring class" for nested class In-Reply-To: References: Message-ID: <20100222184209.443932A6C157@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4692 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:03 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:03 -0600 (CST) Subject: [LLVMbugs] [Bug 144] [sparc] SPEC benchmark gcc is miscompiled In-Reply-To: References: Message-ID: <20100222184203.150A22A6C142@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=144 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:04 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:04 -0600 (CST) Subject: [LLVMbugs] [Bug 444] nightly tester fails when run for the first time In-Reply-To: References: Message-ID: <20100222184204.10F112A6C145@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=444 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:04 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:04 -0600 (CST) Subject: [LLVMbugs] [Bug 5573] Assertion failure in lib/AST/DeclBase.cpp In-Reply-To: References: Message-ID: <20100222184204.B24682A6C155@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5573 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:04 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:04 -0600 (CST) Subject: [LLVMbugs] [Bug 1055] LLVMlto library does not build on Linux (amd64) In-Reply-To: References: Message-ID: <20100222184204.D18362A6C145@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1055 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:07 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:07 -0600 (CST) Subject: [LLVMbugs] [Bug 320] [passmanager] Infinite loop when a transitive pass requires a transitive pass In-Reply-To: References: Message-ID: <20100222184207.6B67D2A6C15E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=320 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:10 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:10 -0600 (CST) Subject: [LLVMbugs] [Bug 5811] clang c++ error passing function template with explicit template arguments to function template In-Reply-To: References: Message-ID: <20100222184210.696FB2A6C165@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5811 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:06 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:06 -0600 (CST) Subject: [LLVMbugs] [Bug 5467] clang hangs with -Os but not -O{,[1-4]} In-Reply-To: References: Message-ID: <20100222184206.D08982A6C15E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5467 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:11 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:11 -0600 (CST) Subject: [LLVMbugs] [Bug 998] llvm-ld infinite loop on bc archive In-Reply-To: References: Message-ID: <20100222184211.D44252A6C170@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=998 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:06 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:06 -0600 (CST) Subject: [LLVMbugs] [Bug 1341] llc: strange message and segfault In-Reply-To: References: Message-ID: <20100222184206.701612A6C139@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1341 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:12 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:12 -0600 (CST) Subject: [LLVMbugs] [Bug 428] [sparcv9] regalloc assertion failure with certain indirect calls In-Reply-To: References: Message-ID: <20100222184212.F1ECE2A6C14A@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=428 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:08 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:08 -0600 (CST) Subject: [LLVMbugs] [Bug 5784] Bad debugging info in unit test bundle when importing some static/@protocol debugging code In-Reply-To: References: Message-ID: <20100222184208.727A42A6C156@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5784 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:08 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:08 -0600 (CST) Subject: [LLVMbugs] [Bug 1083] K&R C compilation failure In-Reply-To: References: Message-ID: <20100222184208.C5A872A6C165@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1083 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:12 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:12 -0600 (CST) Subject: [LLVMbugs] [Bug 5398] linker multiple definition errors when included by two .c files In-Reply-To: References: Message-ID: <20100222184212.9EF572A6C165@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5398 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:09 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:09 -0600 (CST) Subject: [LLVMbugs] [Bug 936] MultiSource/Applications/viterbi suffers from poor register allocation on X86 In-Reply-To: References: Message-ID: <20100222184209.A3F102A6C14E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=936 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:15 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:15 -0600 (CST) Subject: [LLVMbugs] [Bug 4798] Missing warning for comparing signed and unsigned variables In-Reply-To: References: Message-ID: <20100222184215.3FBC22A6C156@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4798 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:10 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:10 -0600 (CST) Subject: [LLVMbugs] [Bug 5656] error: 'set_value' is not virtual and cannot be declared pure In-Reply-To: References: Message-ID: <20100222184210.294E42A6C15E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5656 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:10 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:10 -0600 (CST) Subject: [LLVMbugs] [Bug 4150] [Linux kernel] clang crash, deleting: label %for.body.us.us.i In-Reply-To: References: Message-ID: <20100222184210.99FFF2A6C16D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4150 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:15 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:15 -0600 (CST) Subject: [LLVMbugs] [Bug 918] c backend with array types can produce code rejected by gcc 4.0.1 In-Reply-To: References: Message-ID: <20100222184215.F404D2A6C165@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=918 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:11 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:11 -0600 (CST) Subject: [LLVMbugs] [Bug 1504] DebugInfo tests fail with 'file not found' In-Reply-To: References: Message-ID: <20100222184211.2B9E92A6C170@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1504 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:16 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:16 -0600 (CST) Subject: [LLVMbugs] [Bug 5873] Key function computation messed up for template classes In-Reply-To: References: Message-ID: <20100222184216.DBB052A6C155@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5873 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:11 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:11 -0600 (CST) Subject: [LLVMbugs] [Bug 616] Add --disable-threads to configure options In-Reply-To: References: Message-ID: <20100222184211.7ECB52A6C156@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=616 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:17 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:17 -0600 (CST) Subject: [LLVMbugs] [Bug 4167] support DEPENDENCIES_OUTPUT In-Reply-To: References: Message-ID: <20100222184217.619FF2A6C155@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4167 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:12 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:12 -0600 (CST) Subject: [LLVMbugs] [Bug 1200] [x86] unconditional branch not removed in codegen In-Reply-To: References: Message-ID: <20100222184212.5F3922A6C156@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1200 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:13 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:13 -0600 (CST) Subject: [LLVMbugs] [Bug 514] [llvmc] Reduce amount of configuration for llvmc .in files In-Reply-To: References: Message-ID: <20100222184213.313FA2A6C156@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=514 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:06 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:06 -0600 (CST) Subject: [LLVMbugs] [Bug 255] [tailduplication] Single basic block loops are very rare In-Reply-To: References: Message-ID: <20100222184206.A8BAE2A6C159@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=255 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:07 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:07 -0600 (CST) Subject: [LLVMbugs] [Bug 1139] linker drops target data info In-Reply-To: References: Message-ID: <20100222184207.1B0592A6C164@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1139 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:13 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:13 -0600 (CST) Subject: [LLVMbugs] [Bug 899] Add gcc4 vs. gcc3 differences note In-Reply-To: References: Message-ID: <20100222184213.9C2222A6C155@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=899 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:14 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:14 -0600 (CST) Subject: [LLVMbugs] [Bug 6288] 'const int' not recognized as constant-value In-Reply-To: References: Message-ID: <20100222184214.2C0472A6C156@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6288 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:19 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:19 -0600 (CST) Subject: [LLVMbugs] [Bug 380] Nightly tester terminated at SingleSource/Regression/C/2003-10-13-PointerIncrementTest.c In-Reply-To: References: Message-ID: <20100222184219.161162A6C167@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=380 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:14 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:14 -0600 (CST) Subject: [LLVMbugs] [Bug 1174] WITH_SIZE_EXPR not implemented In-Reply-To: References: Message-ID: <20100222184214.6903F2A6C155@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1174 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:19 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:19 -0600 (CST) Subject: [LLVMbugs] [Bug 467] [X86] Spill floating point stack values in 64-bits of precision instead of 80-bits In-Reply-To: References: Message-ID: <20100222184219.EA8B72A6C140@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=467 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:15 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:15 -0600 (CST) Subject: [LLVMbugs] [Bug 2906] false positive due to symbolic value being promoted to another integer type In-Reply-To: References: Message-ID: <20100222184215.5DC622A6C159@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2906 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:15 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:15 -0600 (CST) Subject: [LLVMbugs] [Bug 450] [llvmg++] Extern const globals cannot be marked 'constant' if they have nontrivial ctors or dtors In-Reply-To: References: Message-ID: <20100222184215.C12772A6C156@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=450 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:20 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:20 -0600 (CST) Subject: [LLVMbugs] [Bug 5974] [c++ codegen] this initializer should be static, not dynamic In-Reply-To: References: Message-ID: <20100222184220.CFD5F2A6C179@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5974 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:16 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:16 -0600 (CST) Subject: [LLVMbugs] [Bug 4387] "make check" creates too many output files In-Reply-To: References: Message-ID: <20100222184216.81BF72A6C157@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4387 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:10 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:10 -0600 (CST) Subject: [LLVMbugs] [Bug 375] Building Should Honor Build/Host/Target Triplet In-Reply-To: References: Message-ID: <20100222184210.D64842A6C16F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=375 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:21 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:21 -0600 (CST) Subject: [LLVMbugs] [Bug 47] bugpoint --debug --run-llc --args doesn't print args In-Reply-To: References: Message-ID: <20100222184221.F40DF2A6C176@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=47 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:16 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:16 -0600 (CST) Subject: [LLVMbugs] [Bug 1074] Remove Stacker from llvm main repository In-Reply-To: References: Message-ID: <20100222184216.488632A6C156@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1074 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:17 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:17 -0600 (CST) Subject: [LLVMbugs] [Bug 5164] Warning when passing multiple -O* arguments In-Reply-To: References: Message-ID: <20100222184217.448C42A6C157@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5164 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:17 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:17 -0600 (CST) Subject: [LLVMbugs] [Bug 341] Sending a Value* to an ostream should print its address, not its contents In-Reply-To: References: Message-ID: <20100222184217.A13802A6C16F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=341 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:17 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:17 -0600 (CST) Subject: [LLVMbugs] [Bug 56] CWriter doesn't support zero arg vararg functions In-Reply-To: References: Message-ID: <20100222184217.CA82F2A6C156@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=56 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:18 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:18 -0600 (CST) Subject: [LLVMbugs] [Bug 5041] assert when nesting static_casts in a function template In-Reply-To: References: Message-ID: <20100222184218.5F0FB2A6C149@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5041 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:18 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:18 -0600 (CST) Subject: [LLVMbugs] [Bug 5371] Clang driver hangs and pegs CPU on DragonFly BSD. In-Reply-To: References: Message-ID: <20100222184218.2EE4A2A6C167@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5371 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:18 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:18 -0600 (CST) Subject: [LLVMbugs] [Bug 751] llvmgcc4 configure should detect a bad --enable-llvm=path line In-Reply-To: References: Message-ID: <20100222184218.CD1D22A6C16F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=751 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:20 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:20 -0600 (CST) Subject: [LLVMbugs] [Bug 6177] Reference binding failure affects viability In-Reply-To: References: Message-ID: <20100222184220.28EB52A6C176@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6177 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:18 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:18 -0600 (CST) Subject: [LLVMbugs] [Bug 192] [X86] X86 Backend never releases memory for machine code structures In-Reply-To: References: Message-ID: <20100222184218.96EBA2A6C172@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=192 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:21 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:21 -0600 (CST) Subject: [LLVMbugs] [Bug 5920] clang fails to detect covariant return type in a virtual function override when the type is an instantiated template In-Reply-To: References: Message-ID: <20100222184221.0E1972A6C17C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5920 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:19 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:19 -0600 (CST) Subject: [LLVMbugs] [Bug 1012] fp stackifier broken In-Reply-To: References: Message-ID: <20100222184219.507122A6C140@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1012 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:24 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:24 -0600 (CST) Subject: [LLVMbugs] [Bug 1465] qw In-Reply-To: References: Message-ID: <20100222184225.0219E2A6C159@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1465 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:20 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:20 -0600 (CST) Subject: [LLVMbugs] [Bug 3178] enum assignment not working In-Reply-To: References: Message-ID: <20100222184220.52F012A6C179@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3178 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:19 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:19 -0600 (CST) Subject: [LLVMbugs] [Bug 175] LLVM needs a "cool projects" page In-Reply-To: References: Message-ID: <20100222184219.8620F2A6C176@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=175 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:20 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:20 -0600 (CST) Subject: [LLVMbugs] [Bug 1426] SingleSource/CustomChecked is fundamentally broken In-Reply-To: References: Message-ID: <20100222184220.864B02A6C156@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1426 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:23 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:23 -0600 (CST) Subject: [LLVMbugs] [Bug 5905] clang c++ should not allow a name with no linkage to declare an entity with linkage In-Reply-To: References: Message-ID: <20100222184223.29B132A6C17F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5905 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:21 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:21 -0600 (CST) Subject: [LLVMbugs] [Bug 590] [mem2reg] Local alloca optimization incorrect for read-before-write case In-Reply-To: References: Message-ID: <20100222184221.AB2C02A6C17D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=590 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:21 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:21 -0600 (CST) Subject: [LLVMbugs] [Bug 1088] Module::getOrInsertFunction is unsafe and broken In-Reply-To: References: Message-ID: <20100222184221.6BAD22A6C156@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1088 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:27 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:27 -0600 (CST) Subject: [LLVMbugs] [Bug 506] llvm-ranlib crashes on empty files In-Reply-To: References: Message-ID: <20100222184227.0798A2A6C183@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=506 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:48 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:48 -0600 (CST) Subject: [LLVMbugs] [Bug 666] mysql-5.0.15 does not build with llvm 1.6 (does with gcc) In-Reply-To: References: Message-ID: <20100222184148.5CD152A6C136@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=666 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:46 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:46 -0600 (CST) Subject: [LLVMbugs] [Bug 992] crash in opt - llvm::CallGraphNode::removeCallEdgeTo(llvm::CallGraphNode*) In-Reply-To: References: Message-ID: <20100222184146.C641C2A6C145@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=992 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:53 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:53 -0600 (CST) Subject: [LLVMbugs] [Bug 3615] double slashes in the generated scan-view command In-Reply-To: References: Message-ID: <20100222184153.2B14C2A6C163@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3615 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:45 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:45 -0600 (CST) Subject: [LLVMbugs] [Bug 5655] attempting to instantiate a templated class without specifying template parameters crashes instead of giving an error In-Reply-To: References: Message-ID: <20100222184145.616642A6C136@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5655 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:24 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:24 -0600 (CST) Subject: [LLVMbugs] [Bug 2713] False positive due to lack of field sensitivity In-Reply-To: References: Message-ID: <20100222184224.26CDF2A6C156@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2713 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:24 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:24 -0600 (CST) Subject: [LLVMbugs] [Bug 5609] clang thinks some (compile-time) integral constant is not constant In-Reply-To: References: Message-ID: <20100222184224.838AC2A6C170@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5609 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:29 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:29 -0600 (CST) Subject: [LLVMbugs] [Bug 822] llvm needs to support external weak linkage In-Reply-To: References: Message-ID: <20100222184229.2C1A42A6C175@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=822 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:29 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:29 -0600 (CST) Subject: [LLVMbugs] [Bug 4067] [Linux kernel] cannot aggregate codegen stmtexpr as lvalue In-Reply-To: References: Message-ID: <20100222184230.02D9A2A6C156@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4067 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:25 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:25 -0600 (CST) Subject: [LLVMbugs] [Bug 4469] Issues defining constructor for class with dependent base class (clang c++) In-Reply-To: References: Message-ID: <20100222184225.5D9802A6C173@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4469 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:25 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:25 -0600 (CST) Subject: [LLVMbugs] [Bug 863] LSR should CSE expression it inserts into loops. In-Reply-To: References: Message-ID: <20100222184225.96E362A6C159@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=863 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:26 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:26 -0600 (CST) Subject: [LLVMbugs] [Bug 5140] Assertion failed: (I->second->find(BD)!=I->second->end() && "Can't find vtable index") In-Reply-To: References: Message-ID: <20100222184226.32C6E2A6C159@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5140 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:31 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:31 -0600 (CST) Subject: [LLVMbugs] [Bug 1257] llc crashes when it compiles the attached file In-Reply-To: References: Message-ID: <20100222184231.6410D2A6C16D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1257 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:26 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:26 -0600 (CST) Subject: [LLVMbugs] [Bug 6276] Linkage specifications are also treated as a storage-class-specifiers In-Reply-To: References: Message-ID: <20100222184226.B39AE2A6C159@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6276 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:26 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:26 -0600 (CST) Subject: [LLVMbugs] [Bug 1223] verifier produces bytecode that causes a bytecode reader assertion failure In-Reply-To: References: Message-ID: <20100222184226.5EA8C2A6C14A@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1223 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:32 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:32 -0600 (CST) Subject: [LLVMbugs] [Bug 187] [loopsimplify] Many pointless phi nodes are created In-Reply-To: References: Message-ID: <20100222184232.506F52A6C172@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=187 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:27 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:27 -0600 (CST) Subject: [LLVMbugs] [Bug 5756] clang c++ crash comparing conversion sequences with conversion of null pointer constant to void* In-Reply-To: References: Message-ID: <20100222184227.9F5E42A6C156@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5756 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:32 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:32 -0600 (CST) Subject: [LLVMbugs] [Bug 5982] clang warns about its own defines when -x assembler-with-cpp In-Reply-To: References: Message-ID: <20100222184232.D1BB82A6C16D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5982 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:28 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:28 -0600 (CST) Subject: [LLVMbugs] [Bug 4312] scan-build --status-bugs has incorrect exit status when the system compiler fails In-Reply-To: References: Message-ID: <20100222184228.2E71A2A6C156@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4312 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:28 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:28 -0600 (CST) Subject: [LLVMbugs] [Bug 6021] name lookup issues with nested templates In-Reply-To: References: Message-ID: <20100222184228.AC2722A6C16D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6021 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:29 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:29 -0600 (CST) Subject: [LLVMbugs] [Bug 5143] "always_inline" not honored on static inline methods In-Reply-To: References: Message-ID: <20100222184229.6895A2A6C167@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5143 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:34 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:34 -0600 (CST) Subject: [LLVMbugs] [Bug 240] [lowerinvoke] Values live across an invoke should become volatile stack objects In-Reply-To: References: Message-ID: <20100222184234.20E1F2A6C172@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=240 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:29 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:29 -0600 (CST) Subject: [LLVMbugs] [Bug 1032] x86-64: junk `(%rip)' after expression In-Reply-To: References: Message-ID: <20100222184229.A7FBE2A6C175@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1032 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:35 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:35 -0600 (CST) Subject: [LLVMbugs] [Bug 4596] ns_returns_retained attribute can't be applied to methods returning id In-Reply-To: References: Message-ID: <20100222184235.77EF12A6C179@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4596 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:30 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:30 -0600 (CST) Subject: [LLVMbugs] [Bug 5621] Clang doesn't know about __attribute__ weakref() In-Reply-To: References: Message-ID: <20100222184230.4C3E52A6C172@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5621 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:30 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:30 -0600 (CST) Subject: [LLVMbugs] [Bug 1271] Instcombine broken after APIntification In-Reply-To: References: Message-ID: <20100222184230.BDBA12A6C16D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1271 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:30 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:30 -0600 (CST) Subject: [LLVMbugs] [Bug 1163] Module should not use SetVector of libraries In-Reply-To: References: Message-ID: <20100222184230.8B37C2A6C179@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1163 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:33 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:33 -0600 (CST) Subject: [LLVMbugs] [Bug 60] [SparcV9] The SparcV9 backend miscompiles several programs In-Reply-To: References: Message-ID: <20100222184233.331042A6C179@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=60 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:31 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:31 -0600 (CST) Subject: [LLVMbugs] [Bug 4301] NSMakeCollectable + autorelease is being flagged as a leak In-Reply-To: References: Message-ID: <20100222184231.0491F2A6C156@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4301 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:32 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:32 -0600 (CST) Subject: [LLVMbugs] [Bug 6315] Exception handling broken in trunk. In-Reply-To: References: Message-ID: <20100222184232.94D3D2A6C17D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6315 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:37 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:37 -0600 (CST) Subject: [LLVMbugs] [Bug 6008] Cannot parse dependent template-id in base clause In-Reply-To: References: Message-ID: <20100222184237.B96D92A6C159@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6008 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:33 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:33 -0600 (CST) Subject: [LLVMbugs] [Bug 4746] __block storage qualifier conflicts with variable name in glibc headers In-Reply-To: References: Message-ID: <20100222184233.9A0FB2A6C181@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4746 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:38 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:38 -0600 (CST) Subject: [LLVMbugs] [Bug 5716] Function template not instantiated if declared as friend In-Reply-To: References: Message-ID: <20100222184238.F1B822A6C182@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5716 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:34 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:34 -0600 (CST) Subject: [LLVMbugs] [Bug 546] [ia64] Alignment required for setjmp buffers In-Reply-To: References: Message-ID: <20100222184234.5038C2A6C182@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=546 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:34 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:34 -0600 (CST) Subject: [LLVMbugs] [Bug 1476] rt In-Reply-To: References: Message-ID: <20100222184234.950A72A6C179@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1476 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:39 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:39 -0600 (CST) Subject: [LLVMbugs] [Bug 4088] Build from trunk fails in lib/Frontend/PCHReader.cpp In-Reply-To: References: Message-ID: <20100222184239.7D1D02A6C18E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4088 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:35 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:35 -0600 (CST) Subject: [LLVMbugs] [Bug 248] linear scan should do iterated coalescing In-Reply-To: References: Message-ID: <20100222184235.A92422A6C186@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=248 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:40 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:40 -0600 (CST) Subject: [LLVMbugs] [Bug 4103] c++ expr has no location: In-Reply-To: References: Message-ID: <20100222184240.D25EA2A6C17D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4103 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:36 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:36 -0600 (CST) Subject: [LLVMbugs] [Bug 5147] Assertion failure when compiling In-Reply-To: References: Message-ID: <20100222184236.351BB2A6C179@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5147 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:36 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:36 -0600 (CST) Subject: [LLVMbugs] [Bug 720] Miscompile of code using libstdc++ In-Reply-To: References: Message-ID: <20100222184236.5F1332A6C188@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=720 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:42 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:42 -0600 (CST) Subject: [LLVMbugs] [Bug 4] LLC Produced executables randomly crash In-Reply-To: References: Message-ID: <20100222184242.055F02A6C18C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:37 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:37 -0600 (CST) Subject: [LLVMbugs] [Bug 2736] "b> 0" expression not properly escaped In-Reply-To: References: Message-ID: <20100222184238.026CB2A6C179@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2736 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:39 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:39 -0600 (CST) Subject: [LLVMbugs] [Bug 4944] clang should have a more robust method for including the source revision In-Reply-To: References: Message-ID: <20100222184240.01C8E2A6C159@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4944 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:35 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:35 -0600 (CST) Subject: [LLVMbugs] [Bug 1009] bootstrap failure building libgcc2 In-Reply-To: References: Message-ID: <20100222184235.0731B2A6C182@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1009 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:38 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:38 -0600 (CST) Subject: [LLVMbugs] [Bug 3098] track bit-level constraints In-Reply-To: References: Message-ID: <20100222184238.3CA452A6C186@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3098 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:37 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:37 -0600 (CST) Subject: [LLVMbugs] [Bug 284] [indvars] Induction variable analysis violates LLVM invariants In-Reply-To: References: Message-ID: <20100222184237.926242A6C186@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=284 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:38 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:38 -0600 (CST) Subject: [LLVMbugs] [Bug 795] Strange link warnings on Linux In-Reply-To: References: Message-ID: <20100222184238.AACFF2A6C18C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=795 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:43 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:43 -0600 (CST) Subject: [LLVMbugs] [Bug 2828] no analysis for included .c files In-Reply-To: References: Message-ID: <20100222184243.D20C42A6C192@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2828 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:39 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:39 -0600 (CST) Subject: [LLVMbugs] [Bug 5893] clang++: rejects In-Reply-To: References: Message-ID: <20100222184239.4C0822A6C18C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5893 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:39 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:39 -0600 (CST) Subject: [LLVMbugs] [Bug 256] further standardizing autoconf usage In-Reply-To: References: Message-ID: <20100222184239.A63372A6C16D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=256 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:44 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:44 -0600 (CST) Subject: [LLVMbugs] [Bug 872] Combine analyze and opt tools In-Reply-To: References: Message-ID: <20100222184244.D1B862A6C188@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=872 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:40 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:40 -0600 (CST) Subject: [LLVMbugs] [Bug 5015] Add uninstall target to CMake (patch included) In-Reply-To: References: Message-ID: <20100222184240.5F2792A6C16D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5015 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:45 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:45 -0600 (CST) Subject: [LLVMbugs] [Bug 4460] [Recovery] Poor diagnostics for missing '; ' prior to template declaration In-Reply-To: References: Message-ID: <20100222184246.000662A6C188@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4460 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:41 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:41 -0600 (CST) Subject: [LLVMbugs] [Bug 6368] crash on attached test In-Reply-To: References: Message-ID: <20100222184241.32C3F2A6C18B@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6368 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:41 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:41 -0600 (CST) Subject: [LLVMbugs] [Bug 4729] Compile Time Constant Struct Member - Compiler Error In-Reply-To: References: Message-ID: <20100222184241.0EB772A6C182@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4729 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:41 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:41 -0600 (CST) Subject: [LLVMbugs] [Bug 278] [llvmgcc] C front-end should only output a given constant string once In-Reply-To: References: Message-ID: <20100222184241.63FC22A6C18C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=278 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:41 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:41 -0600 (CST) Subject: [LLVMbugs] [Bug 3417] [analyzer on wine]: Assertion failed: (asLValue), function VisitDeclRefExpr, file GRExprEngine.cpp, line 882. In-Reply-To: References: Message-ID: <20100222184241.A86512A6C18F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3417 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:42 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:42 -0600 (CST) Subject: [LLVMbugs] [Bug 128] [llvmg++] Cannot use pointer to member to initialize global In-Reply-To: References: Message-ID: <20100222184242.A654C2A6C17D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=128 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:42 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:42 -0600 (CST) Subject: [LLVMbugs] [Bug 807] perform substitution when equality is known In-Reply-To: References: Message-ID: <20100222184242.4AFC42A6C179@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=807 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:43 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:43 -0600 (CST) Subject: [LLVMbugs] [Bug 1002] LICM doesn't update alias sets correctly In-Reply-To: References: Message-ID: <20100222184243.77D542A6C18C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1002 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:44 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:44 -0600 (CST) Subject: [LLVMbugs] [Bug 365] [asmwriter] Asm writer aborts if an instruction is not embedded into a function In-Reply-To: References: Message-ID: <20100222184244.2DF752A6C159@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=365 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:48 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:48 -0600 (CST) Subject: [LLVMbugs] [Bug 1395] Inliner pass' name not being reported correctly In-Reply-To: References: Message-ID: <20100222184248.DC29B2A6C18A@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1395 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:43 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:43 -0600 (CST) Subject: [LLVMbugs] [Bug 6150] Dereference of null pointer false positive In-Reply-To: References: Message-ID: <20100222184243.101B22A6C159@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6150 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:50 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:50 -0600 (CST) Subject: [LLVMbugs] [Bug 85] [llvmg++] Methods and functions in anonymous namespaces don't get internal linkage In-Reply-To: References: Message-ID: <20100222184250.30B252A6C18F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=85 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:48 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:48 -0600 (CST) Subject: [LLVMbugs] [Bug 5779] Incorrect analyzer warning about a garbage value In-Reply-To: References: Message-ID: <20100222184248.20FA02A6C18A@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5779 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:38 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:38 -0600 (CST) Subject: [LLVMbugs] [Bug 657] [llvm-gcc] Spurious "warning: function returns address of local variable" In-Reply-To: References: Message-ID: <20100222184238.7A68A2A6C18A@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=657 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:44 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:44 -0600 (CST) Subject: [LLVMbugs] [Bug 6017] diagnose use of errno after math functions In-Reply-To: References: Message-ID: <20100222184244.8FD902A6C17D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6017 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:47 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:47 -0600 (CST) Subject: [LLVMbugs] [Bug 5457] make check-lit uses opt from PATH instead of Debug/bin/opt In-Reply-To: References: Message-ID: <20100222184247.D242A2A6C156@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5457 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:45 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:45 -0600 (CST) Subject: [LLVMbugs] [Bug 4905] Assertion failure on SSE int built-in functions In-Reply-To: References: Message-ID: <20100222184245.818C02A6C156@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4905 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:45 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:45 -0600 (CST) Subject: [LLVMbugs] [Bug 561] llvm-gcc -g and longjmp don't get along In-Reply-To: References: Message-ID: <20100222184245.BA2362A6C17D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=561 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:46 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:46 -0600 (CST) Subject: [LLVMbugs] [Bug 624] SetCC semantic mismatch on alpha In-Reply-To: References: Message-ID: <20100222184246.4E1032A6C156@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=624 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:46 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:46 -0600 (CST) Subject: [LLVMbugs] [Bug 5916] Looking up declaration found in >1 subobjects In-Reply-To: References: Message-ID: <20100222184246.97DB22A6C17D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5916 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:46 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:46 -0600 (CST) Subject: [LLVMbugs] [Bug 6269] Clang doesn't support declspec attributes In-Reply-To: References: Message-ID: <20100222184246.C372C2A6C16D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6269 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:49 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:49 -0600 (CST) Subject: [LLVMbugs] [Bug 108] gccld -Lfoo -lfoo fails to find ./foo/libfoo.a In-Reply-To: References: Message-ID: <20100222184249.06FFB2A6C18F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=108 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:52 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:52 -0600 (CST) Subject: [LLVMbugs] [Bug 1382] [inlineasm] 's' constraint bug In-Reply-To: References: Message-ID: <20100222184252.AAC7E2A6C190@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1382 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:48 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:48 -0600 (CST) Subject: [LLVMbugs] [Bug 5400] clang doesn't reject reference to reference In-Reply-To: References: Message-ID: <20100222184248.72DCA2A6C18B@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5400 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:30 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:30 -0600 (CST) Subject: [LLVMbugs] [Bug 3984] [driver] clang foo.c -std=c++98 doesn't treat inputs as C++ In-Reply-To: References: Message-ID: <20100222184130.6D5642A6C14B@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3984 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:49 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:49 -0600 (CST) Subject: [LLVMbugs] [Bug 4503] Implement C++0x integral constant expression semantics In-Reply-To: References: Message-ID: <20100222184249.41EBB2A6C18E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4503 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:49 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:49 -0600 (CST) Subject: [LLVMbugs] [Bug 164] [llvmgcc] C front-end miscompiles float constants on big-endian 32-bit target In-Reply-To: References: Message-ID: <20100222184249.661F72A6C18A@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=164 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:49 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:49 -0600 (CST) Subject: [LLVMbugs] [Bug 4782] error: no matching function for 'operator delete' In-Reply-To: References: Message-ID: <20100222184249.B46C02A6C191@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4782 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:52 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:52 -0600 (CST) Subject: [LLVMbugs] [Bug 5972] clang crashes on templates with reference arguments In-Reply-To: References: Message-ID: <20100222184252.300FE2A6C18A@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5972 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:50 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:50 -0600 (CST) Subject: [LLVMbugs] [Bug 523] [llvmg++] Internal compiler error using reference tricks In-Reply-To: References: Message-ID: <20100222184250.A36132A6C18E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=523 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:51 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:51 -0600 (CST) Subject: [LLVMbugs] [Bug 1116] Remove test/Regression In-Reply-To: References: Message-ID: <20100222184251.639F22A6C188@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1116 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:52 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:52 -0600 (CST) Subject: [LLVMbugs] [Bug 6061] error: member 'id' found in multiple base classes of different types In-Reply-To: References: Message-ID: <20100222184253.04A832A6C15C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6061 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:29 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:29 -0600 (CST) Subject: [LLVMbugs] [Bug 91] [gccld] The -r (relinking) option does not work correctly In-Reply-To: References: Message-ID: <20100222184129.BA8E22A6C141@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=91 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:31 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:31 -0600 (CST) Subject: [LLVMbugs] [Bug 741] UsingLibraries.html doc out of date In-Reply-To: References: Message-ID: <20100222184131.CA8D22A6C15C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=741 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:52 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:52 -0600 (CST) Subject: [LLVMbugs] [Bug 6053] Crash when explicit specialization type argument depends on template type parameter In-Reply-To: References: Message-ID: <20100222184252.701D92A6C18F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6053 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:54 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:54 -0600 (CST) Subject: [LLVMbugs] [Bug 269] [llvmgcc] crash on complex bitfield references In-Reply-To: References: Message-ID: <20100222184254.2BA362A6C13D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=269 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:51 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:51 -0600 (CST) Subject: [LLVMbugs] [Bug 5305] setjmp()/longjmp() control-flow In-Reply-To: References: Message-ID: <20100222184251.B43692A6C17D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5305 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:41:30 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:41:30 -0600 (CST) Subject: [LLVMbugs] [Bug 5071] "warning: control reaches end of non-void function" in function template when return type is dependent In-Reply-To: References: Message-ID: <20100222184130.26C302A6C13D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5071 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:53 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:53 -0600 (CST) Subject: [LLVMbugs] [Bug 737] [llvmg++4] Code quality issue with gimplified array ctor In-Reply-To: References: Message-ID: <20100222184253.5A4702A6C181@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=737 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:53 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:53 -0600 (CST) Subject: [LLVMbugs] [Bug 3857] Clang driver dumps binary content when using -E on a header file In-Reply-To: References: Message-ID: <20100222184253.92D6B2A6C141@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3857 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:53 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:53 -0600 (CST) Subject: [LLVMbugs] [Bug 5484] cannot compile this l-value expression yet In-Reply-To: References: Message-ID: <20100222184253.CAB052A6C15C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5484 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:54 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:54 -0600 (CST) Subject: [LLVMbugs] [Bug 545] FindExecutable() returns directories on $PATH In-Reply-To: References: Message-ID: <20100222184254.79B5D2A6C18F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=545 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:54 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:54 -0600 (CST) Subject: [LLVMbugs] [Bug 5311] 'Cannot reduce non-type template parameter depth yet' In-Reply-To: References: Message-ID: <20100222184255.003BE2A6C15C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5311 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:55 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:55 -0600 (CST) Subject: [LLVMbugs] [Bug 4265] klee: Global.h:77: T* MINISAT::xrealloc(T*, size_t) [with T = MINISAT::Clause*]: Assertion `size == 0 || tmp != __null' failed. In-Reply-To: References: Message-ID: <20100222184255.30FBA2A6C18E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4265 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:55 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:55 -0600 (CST) Subject: [LLVMbugs] [Bug 5902] fatal error: 'bits/c++config.h' file not found In-Reply-To: References: Message-ID: <20100222184255.63F9B2A6C141@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5902 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:57 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:57 -0600 (CST) Subject: [LLVMbugs] [Bug 3221] Crash while running In-Reply-To: References: Message-ID: <20100222184257.C0F4D2A6C13D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3221 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:59 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:59 -0600 (CST) Subject: [LLVMbugs] [Bug 2551] False positive for dead store with comma-separated variable initializations In-Reply-To: References: Message-ID: <20100222184259.E51AD2A6C19A@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2551 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:59 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:59 -0600 (CST) Subject: [LLVMbugs] [Bug 1453] LLVM code In-Reply-To: References: Message-ID: <20100222184259.6DA8F2A6C194@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1453 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:01 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:01 -0600 (CST) Subject: [LLVMbugs] [Bug 788] Instructions don't point out that Makefile is needed in object tree as well as source tree In-Reply-To: References: Message-ID: <20100222184301.50C6D2A6C188@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=788 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:01 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:01 -0600 (CST) Subject: [LLVMbugs] [Bug 5849] checker-232 has no available analyses In-Reply-To: References: Message-ID: <20100222184301.CFB152A6C15C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5849 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:02 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:02 -0600 (CST) Subject: [LLVMbugs] [Bug 861] ret i64 doesn't work on 16-bit targets In-Reply-To: References: Message-ID: <20100222184302.184C72A6C1A3@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=861 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:02 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:02 -0600 (CST) Subject: [LLVMbugs] [Bug 6322] Cannot use template arguments in attributes In-Reply-To: References: Message-ID: <20100222184302.B47F62A6C148@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6322 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:04 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:04 -0600 (CST) Subject: [LLVMbugs] [Bug 412] Enhance skeleton target to actually generate code In-Reply-To: References: Message-ID: <20100222184304.691522A6C1A8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=412 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:08 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:08 -0600 (CST) Subject: [LLVMbugs] [Bug 327] [bugpoint] Add ability to remove individual BasicBlocks from functions In-Reply-To: References: Message-ID: <20100222184308.523B82A6C1B3@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=327 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:58 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:58 -0600 (CST) Subject: [LLVMbugs] [Bug 5498] not used const variable not optimized out In-Reply-To: References: Message-ID: <20100222184258.381042A6C197@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5498 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:11 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:11 -0600 (CST) Subject: [LLVMbugs] [Bug 5627] False positive due to forgetting about nodes in a bifurcated path in CheckerVisit() In-Reply-To: References: Message-ID: <20100222184311.AC1FC2A6C1A8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5627 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:57 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:57 -0600 (CST) Subject: [LLVMbugs] [Bug 4856] clang c++ codegen crash with functional cast to scalar In-Reply-To: References: Message-ID: <20100222184257.382C12A6C186@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4856 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:03 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:03 -0600 (CST) Subject: [LLVMbugs] [Bug 6328] Compiler assert when taking __alignof__ an unknown type In-Reply-To: References: Message-ID: <20100222184303.491EB2A6C1A6@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6328 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:01 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:01 -0600 (CST) Subject: [LLVMbugs] [Bug 5478] [QOI] [diags] Improve diagnostic with missing parens In-Reply-To: References: Message-ID: <20100222184301.832F12A6C19F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5478 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:04 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:04 -0600 (CST) Subject: [LLVMbugs] [Bug 139] gccld does not link objects/archives in order specified on the command line In-Reply-To: References: Message-ID: <20100222184304.A10252A6C18B@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=139 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:05 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:05 -0600 (CST) Subject: [LLVMbugs] [Bug 5404] Improve diagnostics/recovery for dependent template name after '.' or '->' In-Reply-To: References: Message-ID: <20100222184305.B2CBA2A6C1A9@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5404 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:06 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:06 -0600 (CST) Subject: [LLVMbugs] [Bug 6293] Malloc checker crashes on free(0) In-Reply-To: References: Message-ID: <20100222184306.6B9892A6C1AA@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6293 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:07 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:07 -0600 (CST) Subject: [LLVMbugs] [Bug 6233] lit should do a better job finding commands and showing what was run In-Reply-To: References: Message-ID: <20100222184307.1F2B12A6C1A0@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6233 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:15 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:15 -0600 (CST) Subject: [LLVMbugs] [Bug 1214] llvm-gcc4 barfs on simple packed bit-fields In-Reply-To: References: Message-ID: <20100222184315.F3C942A6C197@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1214 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:08 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:08 -0600 (CST) Subject: [LLVMbugs] [Bug 1316] Unsupported operator after Inline Asm Change In-Reply-To: References: Message-ID: <20100222184308.C21DE2A6C1AE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1316 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:09 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:09 -0600 (CST) Subject: [LLVMbugs] [Bug 5859] Need mangling for fixed-width integer types In-Reply-To: References: Message-ID: <20100222184309.2898D2A6C19A@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5859 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:09 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:09 -0600 (CST) Subject: [LLVMbugs] [Bug 5912] clang++ assertion failure at SemaDecl.cpp:4336 In-Reply-To: References: Message-ID: <20100222184309.9A0C62A6C15C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5912 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:13 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:13 -0600 (CST) Subject: [LLVMbugs] [Bug 157] [llvmgcc] Pointer & constant results in invalid shift In-Reply-To: References: Message-ID: <20100222184313.618122A6C188@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=157 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:09 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:09 -0600 (CST) Subject: [LLVMbugs] [Bug 1064] ppc linux doesn't handle float parameter to varargs function In-Reply-To: References: Message-ID: <20100222184310.003FF2A6C188@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1064 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:10 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:10 -0600 (CST) Subject: [LLVMbugs] [Bug 2447] gfortran.dg/g77/980628-9.f fails execution test when compiled with llvm-gfortran In-Reply-To: References: Message-ID: <20100222184310.6807E2A6C1A6@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2447 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:10 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:10 -0600 (CST) Subject: [LLVMbugs] [Bug 2542] NSAnimation delegate-ownership is ignored In-Reply-To: References: Message-ID: <20100222184310.D992D2A6C194@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2542 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:11 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:11 -0600 (CST) Subject: [LLVMbugs] [Bug 6211] Failed assertion when testing the ls tool with Klee 64-bit In-Reply-To: References: Message-ID: <20100222184311.337882A6C1A7@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6211 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:17 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:17 -0600 (CST) Subject: [LLVMbugs] [Bug 679] gccld rpath option should specify multiple paths In-Reply-To: References: Message-ID: <20100222184317.F2BE32A6C18F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=679 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:12 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:12 -0600 (CST) Subject: [LLVMbugs] [Bug 1331] Make TestRunner.sh work with new Tcl exec based test harness In-Reply-To: References: Message-ID: <20100222184312.6456D2A6C1A1@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1331 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:12 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:12 -0600 (CST) Subject: [LLVMbugs] [Bug 4196] Find places that use unnecessary memory due to alignment In-Reply-To: References: Message-ID: <20100222184313.0026C2A6C197@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4196 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:13 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:13 -0600 (CST) Subject: [LLVMbugs] [Bug 4096] [Linux kernel] unsupported array designator In-Reply-To: References: Message-ID: <20100222184313.2E3632A6C1A3@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4096 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:04 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:04 -0600 (CST) Subject: [LLVMbugs] [Bug 6350] Compiler assert on valid code In-Reply-To: References: Message-ID: <20100222184304.21D642A6C18F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6350 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:56 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:56 -0600 (CST) Subject: [LLVMbugs] [Bug 602] [llvm-g++] Bad getelementptr instruction when accessing virtual base class In-Reply-To: References: Message-ID: <20100222184256.705A52A6C198@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=602 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:14 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:14 -0600 (CST) Subject: [LLVMbugs] [Bug 1258] type planes not collapsed for unnamed variables In-Reply-To: References: Message-ID: <20100222184314.10AD52A6C1A1@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1258 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:00 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:00 -0600 (CST) Subject: [LLVMbugs] [Bug 1526] Bad TargetData ctor used In-Reply-To: References: Message-ID: <20100222184300.41BC62A6C195@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1526 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:14 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:14 -0600 (CST) Subject: [LLVMbugs] [Bug 960] enhance bugpoint to reduce global initializers In-Reply-To: References: Message-ID: <20100222184314.5E9AE2A6C198@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=960 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:15 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:15 -0600 (CST) Subject: [LLVMbugs] [Bug 622] would like to store gccas opt passes in a file In-Reply-To: References: Message-ID: <20100222184315.3BE1C2A6C188@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=622 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:19 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:19 -0600 (CST) Subject: [LLVMbugs] [Bug 856] ICE returning register var from static function In-Reply-To: References: Message-ID: <20100222184319.667ED2A6C195@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=856 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:15 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:15 -0600 (CST) Subject: [LLVMbugs] [Bug 883] inline asm does not support the 'g' constraint on any target In-Reply-To: References: Message-ID: <20100222184315.83EE32A6C1A1@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=883 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:02 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:02 -0600 (CST) Subject: [LLVMbugs] [Bug 2450] gfortran.dg/g77/980628-10.f testcase fails execution test when compiled with llvm-gfortran In-Reply-To: References: Message-ID: <20100222184302.F36D82A6C190@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2450 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:02 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:02 -0600 (CST) Subject: [LLVMbugs] [Bug 639] instcombine N^2 behavior folding and instructions In-Reply-To: References: Message-ID: <20100222184302.4BBAE2A6C1A5@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=639 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:03 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:03 -0600 (CST) Subject: [LLVMbugs] [Bug 4519] [[[[Foo alloc] init] bar] release] marked as Bad release In-Reply-To: References: Message-ID: <20100222184303.970D92A6C1A4@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4519 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:11 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:11 -0600 (CST) Subject: [LLVMbugs] [Bug 69] C frontend crashes on some programs with lots of types. In-Reply-To: References: Message-ID: <20100222184311.F186B2A6C1A0@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=69 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:16 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:16 -0600 (CST) Subject: [LLVMbugs] [Bug 75] [llvmgcc] Constant initializer of automatic arrays generate huge straight-line code In-Reply-To: References: Message-ID: <20100222184316.680C42A6C190@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=75 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:16 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:16 -0600 (CST) Subject: [LLVMbugs] [Bug 680] Simplify the TargetLowering interface In-Reply-To: References: Message-ID: <20100222184316.CF5EF2A6C197@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=680 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:05 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:05 -0600 (CST) Subject: [LLVMbugs] [Bug 560] [commandline] empty-string argument not allowed as argument In-Reply-To: References: Message-ID: <20100222184305.6B8D02A6C141@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=560 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:06 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:06 -0600 (CST) Subject: [LLVMbugs] [Bug 290] Bugpoint doesn't support uses of external fns by immediate constant exprs In-Reply-To: References: Message-ID: <20100222184306.192B32A6C199@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=290 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:07 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:07 -0600 (CST) Subject: [LLVMbugs] [Bug 558] llvm-test makefiles don't pass tolerance options into bugpoint In-Reply-To: References: Message-ID: <20100222184307.6E1292A6C1B2@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=558 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:17 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:17 -0600 (CST) Subject: [LLVMbugs] [Bug 3469] clang static analyser fails with iPhone projects In-Reply-To: References: Message-ID: <20100222184317.492C22A6C194@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3469 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:21 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:21 -0600 (CST) Subject: [LLVMbugs] [Bug 3781] documentation: analyzer tables are sortable In-Reply-To: References: Message-ID: <20100222184321.CA4B12A6C199@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3781 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:19 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:19 -0600 (CST) Subject: [LLVMbugs] [Bug 1268] slow compilation coming from dse In-Reply-To: References: Message-ID: <20100222184319.F37A52A6C18F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1268 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:17 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:17 -0600 (CST) Subject: [LLVMbugs] [Bug 832] register variables not supported by llvm-gcc In-Reply-To: References: Message-ID: <20100222184317.BB90A2A6C195@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=832 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:24 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:24 -0600 (CST) Subject: [LLVMbugs] [Bug 4128] Crash in caret diagnostics In-Reply-To: References: Message-ID: <20100222184324.10C062A6C190@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4128 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:18 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:18 -0600 (CST) Subject: [LLVMbugs] [Bug 583] [instcombine] Crash on div by select In-Reply-To: References: Message-ID: <20100222184318.3579C2A6C199@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=583 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:19 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:19 -0600 (CST) Subject: [LLVMbugs] [Bug 39] Casted pointer arithmetic not incremented correctly In-Reply-To: References: Message-ID: <20100222184319.97BA42A6C1A4@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=39 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:19 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:19 -0600 (CST) Subject: [LLVMbugs] [Bug 4801] -Wchar-subscripts unimplemented In-Reply-To: References: Message-ID: <20100222184319.4157A2A6C18F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4801 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:25 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:25 -0600 (CST) Subject: [LLVMbugs] [Bug 2440] gfortran.dg/optional_assumed_charlen_1.f90 causes internal compiler error In-Reply-To: References: Message-ID: <20100222184325.3EF212A6C18F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2440 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:13 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:13 -0600 (CST) Subject: [LLVMbugs] [Bug 749] [x86] Miscompilation of code, and extra loads In-Reply-To: References: Message-ID: <20100222184313.9E89D2A6C1AC@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=749 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:06 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:06 -0600 (CST) Subject: [LLVMbugs] [Bug 1357] [inlineasm] earlyclobber modifier is silently ignored In-Reply-To: References: Message-ID: <20100222184306.BDD592A6C196@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1357 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:21 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:21 -0600 (CST) Subject: [LLVMbugs] [Bug 3291] Namespace decl lookup bug In-Reply-To: References: Message-ID: <20100222184321.3EFAC2A6C15C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3291 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:25 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:25 -0600 (CST) Subject: [LLVMbugs] [Bug 6083] '__builtin_fpclassify' and '__builtin_inf' (and probably others) lack sema and codegen support In-Reply-To: References: Message-ID: <20100222184325.F16862A6C199@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6083 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:20 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:20 -0600 (CST) Subject: [LLVMbugs] [Bug 2811] Suggestion: put file:// URLs in analysis HTML In-Reply-To: References: Message-ID: <20100222184320.80DEA2A6C18F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2811 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:20 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:20 -0600 (CST) Subject: [LLVMbugs] [Bug 396] [llvm-gcc] Crash casting function to void In-Reply-To: References: Message-ID: <20100222184320.4BA502A6C1A3@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=396 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:21 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:21 -0600 (CST) Subject: [LLVMbugs] [Bug 632] globalopt crash In-Reply-To: References: Message-ID: <20100222184321.8649B2A6C195@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=632 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:26 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:26 -0600 (CST) Subject: [LLVMbugs] [Bug 6357] Improve source-location information for DeclarationNames In-Reply-To: References: Message-ID: <20100222184326.F15592A6C190@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6357 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:22 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:22 -0600 (CST) Subject: [LLVMbugs] [Bug 1240] -debug-only=jit emits unpleasent output In-Reply-To: References: Message-ID: <20100222184322.C7F702A6C190@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1240 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:28 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:28 -0600 (CST) Subject: [LLVMbugs] [Bug 1466] bv In-Reply-To: References: Message-ID: <20100222184328.26D3D2A6C190@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1466 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:23 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:23 -0600 (CST) Subject: [LLVMbugs] [Bug 1421] union aggregate copies broken in some cases In-Reply-To: References: Message-ID: <20100222184323.616552A6C190@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1421 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:23 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:23 -0600 (CST) Subject: [LLVMbugs] [Bug 937] SelectionDAGLowering does not support frndint instruction (in inline asm) In-Reply-To: References: Message-ID: <20100222184323.B6AC22A6C18F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=937 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:29 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:29 -0600 (CST) Subject: [LLVMbugs] [Bug 5674] initializer codegen'd as static ctor instead of normal init In-Reply-To: References: Message-ID: <20100222184329.2261A2A6C1A0@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5674 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:24 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:24 -0600 (CST) Subject: [LLVMbugs] [Bug 475] [JIT] Should lazily compile functions refered by globals In-Reply-To: References: Message-ID: <20100222184324.900852A6C190@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=475 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:25 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:25 -0600 (CST) Subject: [LLVMbugs] [Bug 163] [sparc] Burg MultiSource test fails on Sparc In-Reply-To: References: Message-ID: <20100222184325.9273B2A6C1A0@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=163 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:30 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:30 -0600 (CST) Subject: [LLVMbugs] [Bug 845] Eliminate cyclic dependencies between libraries In-Reply-To: References: Message-ID: <20100222184330.13BCF2A6C167@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=845 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:26 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:26 -0600 (CST) Subject: [LLVMbugs] [Bug 432] CFE should build llvm-gcc not gcc In-Reply-To: References: Message-ID: <20100222184326.312132A6C1A0@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=432 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:26 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:26 -0600 (CST) Subject: [LLVMbugs] [Bug 3884] clang crash when compiling MacRuby trunk with -arch x86_64 In-Reply-To: References: Message-ID: <20100222184326.72C182A6C1A8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3884 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:28 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:28 -0600 (CST) Subject: [LLVMbugs] [Bug 2] Customize Bugzilla to have some LLVM flavah In-Reply-To: References: Message-ID: <20100222184328.86FE22A6C1A0@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:26 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:26 -0600 (CST) Subject: [LLVMbugs] [Bug 4105] [ffmpeg] unknown warning option -Wtype-limits In-Reply-To: References: Message-ID: <20100222184326.D1ED72A6C1A7@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4105 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:27 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:27 -0600 (CST) Subject: [LLVMbugs] [Bug 705] bizarre llvm-gcc behaviour (followup of llvm-g++ bug) In-Reply-To: References: Message-ID: <20100222184327.929692A6C167@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=705 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:27 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:27 -0600 (CST) Subject: [LLVMbugs] [Bug 910] crash on cast of fwrite address In-Reply-To: References: Message-ID: <20100222184327.5D42A2A6C1A7@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=910 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:32 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:32 -0600 (CST) Subject: [LLVMbugs] [Bug 3010] Static Analyzer's HTML reports should have some cache-prevention headers In-Reply-To: References: Message-ID: <20100222184332.57D132A6C188@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3010 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:26 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:26 -0600 (CST) Subject: [LLVMbugs] [Bug 575] longjmp and siglongjmp are transformed into aborts In-Reply-To: References: Message-ID: <20100222184326.8FCF72A6C199@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=575 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:33 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:33 -0600 (CST) Subject: [LLVMbugs] [Bug 5403] clang -c -O1 -g -ffreestanding crashes In-Reply-To: References: Message-ID: <20100222184333.1D9572A6C177@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5403 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:28 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:28 -0600 (CST) Subject: [LLVMbugs] [Bug 5658] regression with r90158 In-Reply-To: References: Message-ID: <20100222184328.B75782A6C167@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5658 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:56 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:56 -0600 (CST) Subject: [LLVMbugs] [Bug 923] PostDominanceFrontier crash In-Reply-To: References: Message-ID: <20100222184256.313AA2A6C193@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=923 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:29 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:29 -0600 (CST) Subject: [LLVMbugs] [Bug 254] [llvmg++] Crash compiling this testcase In-Reply-To: References: Message-ID: <20100222184329.901A62A6C195@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=254 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:29 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:29 -0600 (CST) Subject: [LLVMbugs] [Bug 1238] assertion compiling debug code for ppc/linux In-Reply-To: References: Message-ID: <20100222184329.DDDD42A6C1B2@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1238 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:59 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:59 -0600 (CST) Subject: [LLVMbugs] [Bug 3908] inline asm error compiling _IntSaturate macro In-Reply-To: References: Message-ID: <20100222184259.0C7422A6C191@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3908 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:30 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:30 -0600 (CST) Subject: [LLVMbugs] [Bug 355] [llvmgcc] Errors handling function prototypes that take opaque structs by-value In-Reply-To: References: Message-ID: <20100222184330.614332A6C1A0@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=355 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:08 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:08 -0600 (CST) Subject: [LLVMbugs] [Bug 844] Internal compiler error with Objective-C++ and -fobjc-gc In-Reply-To: References: Message-ID: <20100222184308.200782A6C155@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=844 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:31 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:31 -0600 (CST) Subject: [LLVMbugs] [Bug 132] [llvmgcc] Complex division is not supported In-Reply-To: References: Message-ID: <20100222184331.C58302A6C190@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=132 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:31 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:31 -0600 (CST) Subject: [LLVMbugs] [Bug 1011] assertion failed while compiling libmng In-Reply-To: References: Message-ID: <20100222184331.46CAA2A6C190@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1011 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:31 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:31 -0600 (CST) Subject: [LLVMbugs] [Bug 131] [llvm-gcc] ?: operator as lvalue not implemented In-Reply-To: References: Message-ID: <20100222184331.8CEC82A6C196@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=131 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:33 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:33 -0600 (CST) Subject: [LLVMbugs] [Bug 332] [adce] Crash handling unreachable code that unwinds In-Reply-To: References: Message-ID: <20100222184333.F24502A6C18F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=332 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:31 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:31 -0600 (CST) Subject: [LLVMbugs] [Bug 2726] Regression causing no errors to be generated? In-Reply-To: References: Message-ID: <20100222184331.EEC942A6C167@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2726 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:33 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:33 -0600 (CST) Subject: [LLVMbugs] [Bug 3830] clang-driver 32 bit pcc arch name incorrect In-Reply-To: References: Message-ID: <20100222184333.4F72B2A6C18F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3830 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:38 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:38 -0600 (CST) Subject: [LLVMbugs] [Bug 4607] clang c++ member lookup failure In-Reply-To: References: Message-ID: <20100222184338.188472A6C18F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4607 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:32 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:32 -0600 (CST) Subject: [LLVMbugs] [Bug 346] [vmcore] Move intrinsic lowering out of the vmcore library In-Reply-To: References: Message-ID: <20100222184332.BE8BC2A6C18F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=346 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:39 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:39 -0600 (CST) Subject: [LLVMbugs] [Bug 611] "rem double x, y" always returns 0.0 In-Reply-To: References: Message-ID: <20100222184339.04DD52A6C188@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=611 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:34 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:34 -0600 (CST) Subject: [LLVMbugs] [Bug 974] -fno-unit-at-a-time should disable all ipo In-Reply-To: References: Message-ID: <20100222184334.49B3C2A6C1A5@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=974 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:37 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:37 -0600 (CST) Subject: [LLVMbugs] [Bug 3824] gcc "compatible" sync builtins are hard coded to int32_t In-Reply-To: References: Message-ID: <20100222184337.3089C2A6C155@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3824 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:35 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:35 -0600 (CST) Subject: [LLVMbugs] [Bug 1533] -indvars pass fails to rewrite the exit condition In-Reply-To: References: Message-ID: <20100222184335.26A802A6C196@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1533 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:56 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:56 -0600 (CST) Subject: [LLVMbugs] [Bug 6118] List-initialization missing implicit copy constructor call In-Reply-To: References: Message-ID: <20100222184256.CAFB32A6C14B@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6118 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:35 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:35 -0600 (CST) Subject: [LLVMbugs] [Bug 388] Put the Core LLVM classes on a diet In-Reply-To: References: Message-ID: <20100222184335.ECC762A6C196@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=388 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:00 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:00 -0600 (CST) Subject: [LLVMbugs] [Bug 5683] not-great error recovery with use of undefined type In-Reply-To: References: Message-ID: <20100222184300.C5CC32A6C19D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5683 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:41 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:41 -0600 (CST) Subject: [LLVMbugs] [Bug 5355] loop pass manager issue prevents loops from being flattened In-Reply-To: References: Message-ID: <20100222184341.09F3A2A6C1A3@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5355 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:34 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:34 -0600 (CST) Subject: [LLVMbugs] [Bug 4956] Does not report uninitialized struct In-Reply-To: References: Message-ID: <20100222184334.D03FB2A6C167@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4956 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:36 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:36 -0600 (CST) Subject: [LLVMbugs] [Bug 4099] [Linux kernel] MachineMemOperand::MachineMemOperand assertion: not a load/store! In-Reply-To: References: Message-ID: <20100222184336.535F32A6C191@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4099 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:34 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:34 -0600 (CST) Subject: [LLVMbugs] [Bug 4358] false positive [field-sensitivity]: takes false branch on two checks which contradict each other In-Reply-To: References: Message-ID: <20100222184334.9BE6C2A6C18F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4358 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:37 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:37 -0600 (CST) Subject: [LLVMbugs] [Bug 3827] attribute((noreturn)) not properly propagated In-Reply-To: References: Message-ID: <20100222184337.5C5A52A6C18F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3827 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:42 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:42 -0600 (CST) Subject: [LLVMbugs] [Bug 5098] [C++] Diagnose new/new[]/delete/delete[] mismatches In-Reply-To: References: Message-ID: <20100222184342.6DC072A6C1B5@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5098 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:37 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:37 -0600 (CST) Subject: [LLVMbugs] [Bug 92] [bcreader] Cannot read shift constant expressions from bytecode file In-Reply-To: References: Message-ID: <20100222184337.BC3322A6C191@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=92 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:27 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:27 -0600 (CST) Subject: [LLVMbugs] [Bug 1026] InstVisit duplicates instruction visitors In-Reply-To: References: Message-ID: <20100222184327.C59FE2A6C1A1@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1026 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:40 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:40 -0600 (CST) Subject: [LLVMbugs] [Bug 5836] missing -Woverloaded-virtual In-Reply-To: References: Message-ID: <20100222184340.7F1E02A6C1A3@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5836 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:38 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:38 -0600 (CST) Subject: [LLVMbugs] [Bug 1449] Script In-Reply-To: References: Message-ID: <20100222184338.5A5932A6C1A1@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1449 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:44 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:44 -0600 (CST) Subject: [LLVMbugs] [Bug 4755] C++0x mode doesn't allow spurious top-level semicolons In-Reply-To: References: Message-ID: <20100222184344.4E01D2A6C190@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4755 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:39 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:39 -0600 (CST) Subject: [LLVMbugs] [Bug 1378] Vector initialization causes C++ front-end ICE In-Reply-To: References: Message-ID: <20100222184339.CB12D2A6C191@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1378 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:39 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:39 -0600 (CST) Subject: [LLVMbugs] [Bug 4139] [Linux kernel] clang hangs (inf loop?) In-Reply-To: References: Message-ID: <20100222184339.EC77A2A6C1A3@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4139 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:45 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:45 -0600 (CST) Subject: [LLVMbugs] [Bug 299] [Sparc] Code generator asserts on alloca of zero size type In-Reply-To: References: Message-ID: <20100222184345.3534E2A6C1A1@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=299 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:40 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:40 -0600 (CST) Subject: [LLVMbugs] [Bug 102] hash_map, hash_set tests broken In-Reply-To: References: Message-ID: <20100222184340.BD7AC2A6C1AD@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=102 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:45 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:45 -0600 (CST) Subject: [LLVMbugs] [Bug 740] Update FAQ In-Reply-To: References: Message-ID: <20100222184345.EF3BB2A6C1AD@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=740 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:41 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:41 -0600 (CST) Subject: [LLVMbugs] [Bug 649] [llvm-gcc] llvm-types.c internal compiler error: unknown integral type size In-Reply-To: References: Message-ID: <20100222184341.8FF2B2A6C1A3@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=649 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:41 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:41 -0600 (CST) Subject: [LLVMbugs] [Bug 1299] Incorrect use of RIP Relative to access globals on x86_64 In-Reply-To: References: Message-ID: <20100222184341.CABA32A6C1B5@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1299 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:47 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:47 -0600 (CST) Subject: [LLVMbugs] [Bug 5096] clang "TestRunner.sh" doesn't print out PR/radr numbers In-Reply-To: References: Message-ID: <20100222184347.48B842A6C188@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5096 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:48 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:48 -0600 (CST) Subject: [LLVMbugs] [Bug 5589] [irgen] clang is producing ugly LLVM structures for C++ records In-Reply-To: References: Message-ID: <20100222184348.1817E2A6C167@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5589 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:42 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:42 -0600 (CST) Subject: [LLVMbugs] [Bug 1208] examples get installed In-Reply-To: References: Message-ID: <20100222184342.BEC8A2A6C1B9@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1208 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:43 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:43 -0600 (CST) Subject: [LLVMbugs] [Bug 4730] Clang should be aware of Objective-C toll free bridging In-Reply-To: References: Message-ID: <20100222184343.CA0E62A6C190@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4730 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:49 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:49 -0600 (CST) Subject: [LLVMbugs] [Bug 262] Feature request: 'install-bytecode' target in llvm/runtime In-Reply-To: References: Message-ID: <20100222184349.09E322A6C190@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=262 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:43 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:43 -0600 (CST) Subject: [LLVMbugs] [Bug 854] llvm-gcc4: crash compiling constant expr cast In-Reply-To: References: Message-ID: <20100222184343.5D2ED2A6C1AD@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=854 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:44 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:44 -0600 (CST) Subject: [LLVMbugs] [Bug 150] [sparc] Ptrdist-ks crashes in native mode In-Reply-To: References: Message-ID: <20100222184344.7C3312A6C1AD@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=150 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:49 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:49 -0600 (CST) Subject: [LLVMbugs] [Bug 1138] CBE can't handle programs with llvm.memcpy.i64 and llvm.memcpy.i32 In-Reply-To: References: Message-ID: <20100222184349.F1E2B2A6C1B8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1138 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:45 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:45 -0600 (CST) Subject: [LLVMbugs] [Bug 1016] Codegen wrong for: ptrtoint X* %y to bool In-Reply-To: References: Message-ID: <20100222184345.B6F7D2A6C177@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1016 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:51 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:51 -0600 (CST) Subject: [LLVMbugs] [Bug 6183] clang::GRExprEngine::VisitCast() Cast kind 13 not handled. In-Reply-To: References: Message-ID: <20100222184351.551432A6C191@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6183 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:40 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:40 -0600 (CST) Subject: [LLVMbugs] [Bug 806] LTDL_SHLIB_EXT set to .so on darwin instead of .dylib In-Reply-To: References: Message-ID: <20100222184340.3058F2A6C188@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=806 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:46 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:46 -0600 (CST) Subject: [LLVMbugs] [Bug 118] qmtest suite happily runs all tests even for unsupported features In-Reply-To: References: Message-ID: <20100222184346.D1B692A6C177@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=118 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:46 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:46 -0600 (CST) Subject: [LLVMbugs] [Bug 670] The mem2reg pass segfaults on the attached bytecode file In-Reply-To: References: Message-ID: <20100222184346.811122A6C190@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=670 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:49 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:49 -0600 (CST) Subject: [LLVMbugs] [Bug 5693] virtual functions not overridden if derived class is templated In-Reply-To: References: Message-ID: <20100222184349.7EDDA2A6C188@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5693 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:47 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:47 -0600 (CST) Subject: [LLVMbugs] [Bug 97] bugpoint must not pass -R to Mach-O linker In-Reply-To: References: Message-ID: <20100222184347.99FAC2A6C190@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=97 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:39 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:39 -0600 (CST) Subject: [LLVMbugs] [Bug 3458] scan-build (checker-0.147) fails on locally declared labels In-Reply-To: References: Message-ID: <20100222184339.3AB9B2A6C1A0@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3458 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:48 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:48 -0600 (CST) Subject: [LLVMbugs] [Bug 3915] clang -E foo.h doesn't just run the preprocessor In-Reply-To: References: Message-ID: <20100222184348.7B33D2A6C190@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3915 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:48 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:48 -0600 (CST) Subject: [LLVMbugs] [Bug 1054] Enums attempt to redefine manifest constants in macho writer In-Reply-To: References: Message-ID: <20100222184348.CAAB22A6C1AD@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1054 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:54 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:54 -0600 (CST) Subject: [LLVMbugs] [Bug 6287] Clang doesn't support __attribute__((returns_twice)) In-Reply-To: References: Message-ID: <20100222184354.52BDD2A6C18F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6287 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:49 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:49 -0600 (CST) Subject: [LLVMbugs] [Bug 5840] base specifiers are using ordinary lookup In-Reply-To: References: Message-ID: <20100222184349.A8F962A6C1A0@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5840 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:55 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:55 -0600 (CST) Subject: [LLVMbugs] [Bug 5142] Making a C function a friend breaks usage as rval In-Reply-To: References: Message-ID: <20100222184355.1A94C2A6C1B9@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5142 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:44 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:44 -0600 (CST) Subject: [LLVMbugs] [Bug 23] email prefs pane changes don't stick In-Reply-To: References: Message-ID: <20100222184344.222452A6C191@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=23 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:50 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:50 -0600 (CST) Subject: [LLVMbugs] [Bug 5931] Static analyzer crashes checking HDF5 1.8.4 codebase In-Reply-To: References: Message-ID: <20100222184350.8F6E82A6C19D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5931 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:50 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:50 -0600 (CST) Subject: [LLVMbugs] [Bug 6325] Missing typo correction for base class specifiers In-Reply-To: References: Message-ID: <20100222184350.3E8EA2A6C190@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6325 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:50 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:50 -0600 (CST) Subject: [LLVMbugs] [Bug 3828] direct memory access considered undefined In-Reply-To: References: Message-ID: <20100222184350.B79AC2A6C1B8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3828 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:55 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:55 -0600 (CST) Subject: [LLVMbugs] [Bug 376] llvm.py doesn't handle non-existent executables gracefully In-Reply-To: References: Message-ID: <20100222184355.B57302A6C191@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=376 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:51 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:51 -0600 (CST) Subject: [LLVMbugs] [Bug 6147] [CG]: Assertion failed: (!isa(D) && "Use other ctor with dtor decls!"), function Init, file GlobalDecl.h, line 31. In-Reply-To: References: Message-ID: <20100222184351.998F72A6C1B8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6147 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:45 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:45 -0600 (CST) Subject: [LLVMbugs] [Bug 4766] clang -arch x86_64 -static passing -static to assembler In-Reply-To: References: Message-ID: <20100222184345.640982A6C18F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4766 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:51 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:51 -0600 (CST) Subject: [LLVMbugs] [Bug 6278] clang gives global references external linkage In-Reply-To: References: Message-ID: <20100222184351.C0CB72A6C1BB@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6278 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:51 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:51 -0600 (CST) Subject: [LLVMbugs] [Bug 1574] SmallPtrSet does not work with const data In-Reply-To: References: Message-ID: <20100222184351.EA0E42A6C177@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1574 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:57 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:57 -0600 (CST) Subject: [LLVMbugs] [Bug 16] [lowerinvoke] The -lowerinvoke pass does not insert calls to setjmp/longjmp In-Reply-To: References: Message-ID: <20100222184357.37B042A6C1B3@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=16 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:52 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:52 -0600 (CST) Subject: [LLVMbugs] [Bug 5810] default argument in class template constructor not instantiated In-Reply-To: References: Message-ID: <20100222184352.92BEC2A6C18F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5810 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:53 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:53 -0600 (CST) Subject: [LLVMbugs] [Bug 6205] Unnecessary static initializer created In-Reply-To: References: Message-ID: <20100222184353.177972A6C18F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6205 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:52 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:52 -0600 (CST) Subject: [LLVMbugs] [Bug 4448] Compiler crashes using decltype to declare a non-type template parameter In-Reply-To: References: Message-ID: <20100222184352.751C92A6C191@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4448 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:58 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:58 -0600 (CST) Subject: [LLVMbugs] [Bug 5040] Cast conversion failure In-Reply-To: References: Message-ID: <20100222184358.295802A6C1A0@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5040 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:53 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:53 -0600 (CST) Subject: [LLVMbugs] [Bug 209] [loadvn/inline/scalarrepl] Slow optimizations with extremely large basic blocks In-Reply-To: References: Message-ID: <20100222184353.AD3AD2A6C19D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=209 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:59 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:59 -0600 (CST) Subject: [LLVMbugs] [Bug 5885] clang c++ crash-on-invalid with anonymous union In-Reply-To: References: Message-ID: <20100222184359.1A3452A6C1B8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5885 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:54 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:54 -0600 (CST) Subject: [LLVMbugs] [Bug 690] llvm-gcc should set aggressive alignment info when lowering memset/memcpy/memmove In-Reply-To: References: Message-ID: <20100222184354.DBDCB2A6C1B3@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=690 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:54 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:54 -0600 (CST) Subject: [LLVMbugs] [Bug 445] [llvmg++] not enough templates are instantiated In-Reply-To: References: Message-ID: <20100222184354.982292A6C1A1@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=445 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:00 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:00 -0600 (CST) Subject: [LLVMbugs] [Bug 68] llvmgcc asserts when compiling functions renamed with asm's In-Reply-To: References: Message-ID: <20100222184400.640F42A6C1B3@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=68 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:55 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:55 -0600 (CST) Subject: [LLVMbugs] [Bug 453] "./configure; make" can't compile stacker_rt.c to bytecode In-Reply-To: References: Message-ID: <20100222184355.4E5D92A6C1AD@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=453 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:55 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:55 -0600 (CST) Subject: [LLVMbugs] [Bug 429] CommandLine should provide program name in error output In-Reply-To: References: Message-ID: <20100222184355.DB72C2A6C1B3@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=429 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:00 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:00 -0600 (CST) Subject: [LLVMbugs] [Bug 4715] -Wno-error treated same a -Werror In-Reply-To: References: Message-ID: <20100222184401.04D892A6C1B8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4715 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:56 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:56 -0600 (CST) Subject: [LLVMbugs] [Bug 4904] Unused ivar warning for ivar used in category In-Reply-To: References: Message-ID: <20100222184356.4C3922A6C1A1@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4904 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:56 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:56 -0600 (CST) Subject: [LLVMbugs] [Bug 5887] -Wsign-compare considers ternary expression as "int" type In-Reply-To: References: Message-ID: <20100222184356.E42C62A6C191@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5887 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:59 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:59 -0600 (CST) Subject: [LLVMbugs] [Bug 5454] codegen of new X() with a cast generates wrong LLVM BB predecessors In-Reply-To: References: Message-ID: <20100222184359.79BC22A6C1A0@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5454 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:57 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:57 -0600 (CST) Subject: [LLVMbugs] [Bug 1203] memory corruption in new BitVector class In-Reply-To: References: Message-ID: <20100222184357.D6F962A6C1BA@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1203 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:57 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:57 -0600 (CST) Subject: [LLVMbugs] [Bug 1201] Unused malloc/free don't get optimized In-Reply-To: References: Message-ID: <20100222184357.A35E32A6C1A0@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1201 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:03 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:03 -0600 (CST) Subject: [LLVMbugs] [Bug 4658] clang c++ unexpected "use of overloaded operator '==' is ambiguous" error In-Reply-To: References: Message-ID: <20100222184403.3F1642A6C1B8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4658 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:58 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:58 -0600 (CST) Subject: [LLVMbugs] [Bug 617] X != A-X miscompiled in the codegenerator In-Reply-To: References: Message-ID: <20100222184358.7A9652A6C1BA@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=617 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:58 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:58 -0600 (CST) Subject: [LLVMbugs] [Bug 5] [inline] Opt freezes when used with -inline pass In-Reply-To: References: Message-ID: <20100222184358.D21F82A6C1B9@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:01 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:01 -0600 (CST) Subject: [LLVMbugs] [Bug 1342] Using ETForest in LCSSA causes bootstrap failure In-Reply-To: References: Message-ID: <20100222184401.755432A6C1BA@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1342 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:04 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:04 -0600 (CST) Subject: [LLVMbugs] [Bug 1273] CBE fails on SingleSource/Regression/C/2003-05-22-VarSizeArray In-Reply-To: References: Message-ID: <20100222184404.BEE622A6C1B8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1273 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:00 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:00 -0600 (CST) Subject: [LLVMbugs] [Bug 891] "make bugpoint-gccas" spews binary garbage in Burg In-Reply-To: References: Message-ID: <20100222184400.CF9BA2A6C19D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=891 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:06 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:06 -0600 (CST) Subject: [LLVMbugs] [Bug 4250] Implement clang-analyzer In-Reply-To: References: Message-ID: <20100222184406.15DD02A6C1B8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4250 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:07 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:07 -0600 (CST) Subject: [LLVMbugs] [Bug 1107] -instcombine miscompilation of MiBench/consumer-typeset In-Reply-To: References: Message-ID: <20100222184407.181862A6C19D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1107 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:02 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:02 -0600 (CST) Subject: [LLVMbugs] [Bug 5718] Assertion failed: (ExprType->isFunctionType() && "Unknown scalar value"), function EmitLoadOfLValue, file CGExpr.cpp, line 360. In-Reply-To: References: Message-ID: <20100222184402.7A0BD2A6C1B8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5718 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:08 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:08 -0600 (CST) Subject: [LLVMbugs] [Bug 1248] Another InstCombine issue In-Reply-To: References: Message-ID: <20100222184408.19FD22A6C19F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1248 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:03 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:03 -0600 (CST) Subject: [LLVMbugs] [Bug 1469] IVM Tools In-Reply-To: References: Message-ID: <20100222184403.C4D882A6C1B8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1469 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:09 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:09 -0600 (CST) Subject: [LLVMbugs] [Bug 496] Cannot build llvm without llvm-gcc In-Reply-To: References: Message-ID: <20100222184409.9ECFF2A6C1CA@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=496 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:10 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:10 -0600 (CST) Subject: [LLVMbugs] [Bug 5548] clang c++ error explicitly calling destructor on const object In-Reply-To: References: Message-ID: <20100222184410.26CCD2A6C1CA@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5548 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:05 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:05 -0600 (CST) Subject: [LLVMbugs] [Bug 111] Obsoleting Didn't Work In-Reply-To: References: Message-ID: <20100222184405.7C2D42A6C1B8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=111 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:11 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:11 -0600 (CST) Subject: [LLVMbugs] [Bug 377] [llvmgcc] miscompilation of staticly initialized unsigned bitfields In-Reply-To: References: Message-ID: <20100222184411.41DE12A6C1BE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=377 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:06 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:06 -0600 (CST) Subject: [LLVMbugs] [Bug 393] [configure] Include generation/installation of man pages into build In-Reply-To: References: Message-ID: <20100222184406.8FD822A6C1B8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=393 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:12 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:12 -0600 (CST) Subject: [LLVMbugs] [Bug 449] [llvmg++] ofstream ctor bus errors on powerpc In-Reply-To: References: Message-ID: <20100222184412.299502A6C1A6@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=449 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:01 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:01 -0600 (CST) Subject: [LLVMbugs] [Bug 5619] [irgen] Assertion failed: ((NumParams == FTy->getNumParams() || (FTy->isVarArg() && NumParams > FTy->getNumParams())) && "Calling a function with bad signature!" In-Reply-To: References: Message-ID: <20100222184401.3F25E2A6C1B9@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5619 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:12 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:12 -0600 (CST) Subject: [LLVMbugs] [Bug 823] Compilation failure In-Reply-To: References: Message-ID: <20100222184413.02D6A2A6C1B8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=823 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:08 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:08 -0600 (CST) Subject: [LLVMbugs] [Bug 5368] LLVM fails to build on Windows with MinGW In-Reply-To: References: Message-ID: <20100222184408.74B982A6C1C4@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5368 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:08 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:08 -0600 (CST) Subject: [LLVMbugs] [Bug 958] case branch tables: as complains "complex expression, absolute segment assumed" In-Reply-To: References: Message-ID: <20100222184408.B6EEC2A6C1B3@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=958 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:08 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:08 -0600 (CST) Subject: [LLVMbugs] [Bug 364] [llvmgcc] llvmgcc does not compile with gcc 3.4 In-Reply-To: References: Message-ID: <20100222184408.E28C52A6C1CC@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=364 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:13 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:13 -0600 (CST) Subject: [LLVMbugs] [Bug 425] [llvmg++] Unable to globally override operator new and delete without --disable-shared In-Reply-To: References: Message-ID: <20100222184413.927762A6C1BD@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=425 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:43:42 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:43:42 -0600 (CST) Subject: [LLVMbugs] [Bug 308] getObjectType doesn't understand abbreviated names in headers In-Reply-To: References: Message-ID: <20100222184342.0714A2A6C1AE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=308 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:04 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:04 -0600 (CST) Subject: [LLVMbugs] [Bug 2768] The analyzer had problems processing type of @property mismatches In-Reply-To: References: Message-ID: <20100222184404.1CC252A6C1BE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2768 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:10 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:10 -0600 (CST) Subject: [LLVMbugs] [Bug 704] PPC JIT codegen failure for indirect function calls In-Reply-To: References: Message-ID: <20100222184410.754F82A6C1CC@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=704 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:15 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:15 -0600 (CST) Subject: [LLVMbugs] [Bug 5761] clang can't parse code that uses the type of an expression passing a non-POD through ... In-Reply-To: References: Message-ID: <20100222184415.E1A632A6C1AE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5761 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:10 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:10 -0600 (CST) Subject: [LLVMbugs] [Bug 2696] Feature request: custom checks In-Reply-To: References: Message-ID: <20100222184410.B705F2A6C1CE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2696 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:05 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:05 -0600 (CST) Subject: [LLVMbugs] [Bug 3614] clang header path should not be mapped by -isysroot In-Reply-To: References: Message-ID: <20100222184405.469552A6C1C1@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3614 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:11 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:11 -0600 (CST) Subject: [LLVMbugs] [Bug 3276] Clang should recognize and analyze assert() statements In-Reply-To: References: Message-ID: <20100222184411.812132A6C1C3@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3276 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:10 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:10 -0600 (CST) Subject: [LLVMbugs] [Bug 237] [x86] wierd stack/frame pointer manipulation In-Reply-To: References: Message-ID: <20100222184411.024442A6C1C9@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=237 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:12 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:12 -0600 (CST) Subject: [LLVMbugs] [Bug 4309] Explicit ref counting attributes for all ref operations In-Reply-To: References: Message-ID: <20100222184412.7BEF12A6C1C2@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4309 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:05 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:05 -0600 (CST) Subject: [LLVMbugs] [Bug 5280] Clang doesn't allow __attribute__((__stdcall__)) on function pointers. In-Reply-To: References: Message-ID: <20100222184405.B51322A6C1BA@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5280 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:14 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:14 -0600 (CST) Subject: [LLVMbugs] [Bug 145] [sparc] SPEC benchmark mesa is miscompiled In-Reply-To: References: Message-ID: <20100222184415.048192A6C1A6@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=145 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:13 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:13 -0600 (CST) Subject: [LLVMbugs] [Bug 1515] llvm2cpp generates incorrect code when -funcname parameter is used. In-Reply-To: References: Message-ID: <20100222184413.3D1592A6C1C8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1515 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:17 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:17 -0600 (CST) Subject: [LLVMbugs] [Bug 315] abort, don't warn, when missing external functions encountered In-Reply-To: References: Message-ID: <20100222184417.272E22A6C1AE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=315 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:18 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:18 -0600 (CST) Subject: [LLVMbugs] [Bug 3778] anonymous unions and designated initializers do not work together In-Reply-To: References: Message-ID: <20100222184418.8D5D02A6C1AE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3778 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:14 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:14 -0600 (CST) Subject: [LLVMbugs] [Bug 3635] analyzer complains about valid ## __VA_ARGS__ when combined with a leak In-Reply-To: References: Message-ID: <20100222184414.2414C2A6C1B2@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3635 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:07 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:07 -0600 (CST) Subject: [LLVMbugs] [Bug 4164] False positive when calling getsockopt In-Reply-To: References: Message-ID: <20100222184407.7EF722A6C1BC@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4164 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:14 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:14 -0600 (CST) Subject: [LLVMbugs] [Bug 1474] sss In-Reply-To: References: Message-ID: <20100222184414.A621C2A6C1C8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1474 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:20 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:20 -0600 (CST) Subject: [LLVMbugs] [Bug 5014] clang: better crash handling In-Reply-To: References: Message-ID: <20100222184420.61B962A6C1BB@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5014 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:15 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:15 -0600 (CST) Subject: [LLVMbugs] [Bug 1094] SetVector iterators aren't really mutable In-Reply-To: References: Message-ID: <20100222184415.930D22A6C1BA@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1094 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:09 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:09 -0600 (CST) Subject: [LLVMbugs] [Bug 4490] clang should give a good diagnostic when writing to a full disk during compilation In-Reply-To: References: Message-ID: <20100222184409.2E3B62A6C19F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4490 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:16 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:16 -0600 (CST) Subject: [LLVMbugs] [Bug 109] LLVM Source Code Should Use A C++ Namespace For Easier Integration In-Reply-To: References: Message-ID: <20100222184416.312352A6C1BA@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=109 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:16 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:16 -0600 (CST) Subject: [LLVMbugs] [Bug 929] livevars takes 50% of codegen time (N^2 algorithm?) In-Reply-To: References: Message-ID: <20100222184416.C44FC2A6C19F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=929 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:21 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:21 -0600 (CST) Subject: [LLVMbugs] [Bug 88] Interpreter does not support invoke or unwind In-Reply-To: References: Message-ID: <20100222184421.95F212A6C1CB@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=88 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:17 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:17 -0600 (CST) Subject: [LLVMbugs] [Bug 4597] Support execution with target != host In-Reply-To: References: Message-ID: <20100222184417.AD47D2A6C1A6@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4597 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:23 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:23 -0600 (CST) Subject: [LLVMbugs] [Bug 5464] [patch] struct redefinition in function parameter list should be a warning not an error In-Reply-To: References: Message-ID: <20100222184423.32BEF2A6C1BA@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5464 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:18 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:18 -0600 (CST) Subject: [LLVMbugs] [Bug 3475] Incorrect diagnostic for class member field of type found in two base classes. In-Reply-To: References: Message-ID: <20100222184418.3CAD72A6C1A6@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3475 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:11 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:11 -0600 (CST) Subject: [LLVMbugs] [Bug 431] statically allocated flexible array triggers assertion In-Reply-To: References: Message-ID: <20100222184411.BE7342A6C1BE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=431 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:17 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:17 -0600 (CST) Subject: [LLVMbugs] [Bug 4330] [RFE] Warn/Report when floating point values are passed to abs() In-Reply-To: References: Message-ID: <20100222184417.EF30F2A6C1BA@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4330 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:18 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:18 -0600 (CST) Subject: [LLVMbugs] [Bug 5564] clang++ miscompiles stringref example In-Reply-To: References: Message-ID: <20100222184418.DDFA42A6C1A6@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5564 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:21 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:21 -0600 (CST) Subject: [LLVMbugs] [Bug 3162] false positive on compile-time computable expression In-Reply-To: References: Message-ID: <20100222184421.445EC2A6C1BA@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3162 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:19 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:19 -0600 (CST) Subject: [LLVMbugs] [Bug 283] Need support for position independent code & relocations In-Reply-To: References: Message-ID: <20100222184419.30D6C2A6C1BA@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=283 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:19 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:19 -0600 (CST) Subject: [LLVMbugs] [Bug 5057] friend template bug processing locale stuff In-Reply-To: References: Message-ID: <20100222184419.A686E2A6C1AE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5057 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:19 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:19 -0600 (CST) Subject: [LLVMbugs] [Bug 409] ConstantFP::isValueValidForType Broken In-Reply-To: References: Message-ID: <20100222184419.CF6AD2A6C1BA@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=409 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:21 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:21 -0600 (CST) Subject: [LLVMbugs] [Bug 418] Want JIT support for threaded programs In-Reply-To: References: Message-ID: <20100222184421.BB9952A6C1BA@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=418 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:20 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:20 -0600 (CST) Subject: [LLVMbugs] [Bug 3878] avoid spurious errors when class method declarations didn't type check. In-Reply-To: References: Message-ID: <20100222184420.23F772A6C1C8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3878 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:26 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:26 -0600 (CST) Subject: [LLVMbugs] [Bug 598] Need Support For Building Tools From Bytecode In-Reply-To: References: Message-ID: <20100222184426.15E712A6C1BA@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=598 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:21 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:21 -0600 (CST) Subject: [LLVMbugs] [Bug 5082] Clang asserts on "Access specifier is AS_none inside a record decl" In-Reply-To: References: Message-ID: <20100222184421.6B2FF2A6C1C7@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5082 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:22 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:22 -0600 (CST) Subject: [LLVMbugs] [Bug 794] Factor Dominators.cpp, Verifier.cpp and Pass* out of lib/LLVMCore In-Reply-To: References: Message-ID: <20100222184422.332EB2A6C1CE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=794 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:27 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:27 -0600 (CST) Subject: [LLVMbugs] [Bug 871] assertion: Couldn't allocate output reg! In-Reply-To: References: Message-ID: <20100222184427.5C9832A6C1A6@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=871 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:22 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:22 -0600 (CST) Subject: [LLVMbugs] [Bug 1100] Could not resolve external global address: __dso_handle In-Reply-To: References: Message-ID: <20100222184422.92BD22A6C1BA@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1100 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:25 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:25 -0600 (CST) Subject: [LLVMbugs] [Bug 5273] Warn on initializing a class member with itself In-Reply-To: References: Message-ID: <20100222184425.1F21D2A6C1BE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5273 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:23 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:23 -0600 (CST) Subject: [LLVMbugs] [Bug 4863] "Nil receiver may returns garbage" should be deployment target dependent In-Reply-To: References: Message-ID: <20100222184423.7086A2A6C1BB@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4863 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:23 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:23 -0600 (CST) Subject: [LLVMbugs] [Bug 4862] cmake doesn't install FileCheck In-Reply-To: References: Message-ID: <20100222184423.BF0712A6C1D0@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4862 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:28 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:28 -0600 (CST) Subject: [LLVMbugs] [Bug 4335] scan-build gives no reports In-Reply-To: References: Message-ID: <20100222184428.E06492A6C1BA@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4335 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:29 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:29 -0600 (CST) Subject: [LLVMbugs] [Bug 1122] getelementptr gets confused with nested type In-Reply-To: References: Message-ID: <20100222184429.41F2A2A6C1BE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1122 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:24 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:24 -0600 (CST) Subject: [LLVMbugs] [Bug 4295] Support arbitrary width types. In-Reply-To: References: Message-ID: <20100222184424.C652C2A6C1BA@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4295 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:25 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:25 -0600 (CST) Subject: [LLVMbugs] [Bug 126] llvmg++ generates casting code for member initialization In-Reply-To: References: Message-ID: <20100222184425.5297F2A6C1BA@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=126 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:19 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:19 -0600 (CST) Subject: [LLVMbugs] [Bug 5892] clang++: segfault after syntax error In-Reply-To: References: Message-ID: <20100222184419.691092A6C1C9@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5892 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:28 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:28 -0600 (CST) Subject: [LLVMbugs] [Bug 340] Verifier misses malformed switch instruction In-Reply-To: References: Message-ID: <20100222184428.32D342A6C1A6@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=340 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:28 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:28 -0600 (CST) Subject: [LLVMbugs] [Bug 6078] Ambiguous conversion sequence in surrogate function call => assertion failure In-Reply-To: References: Message-ID: <20100222184428.7E9312A6C1CC@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6078 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:31 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:31 -0600 (CST) Subject: [LLVMbugs] [Bug 4300] Miscategorization of -[NSView enclosingScrollView] returning an objC object with +0 retain count In-Reply-To: References: Message-ID: <20100222184431.418BB2A6C1CE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4300 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:29 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:29 -0600 (CST) Subject: [LLVMbugs] [Bug 672] Indirect tail calls fail when register allocated is callee save In-Reply-To: References: Message-ID: <20100222184429.A47582A6C1BA@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=672 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:32 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:32 -0600 (CST) Subject: [LLVMbugs] [Bug 3309] Analyzer failures when scanning bootloader In-Reply-To: References: Message-ID: <20100222184432.390222A6C1BC@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3309 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:30 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:30 -0600 (CST) Subject: [LLVMbugs] [Bug 5392] Assertion failed: (Field && "No code generation for non-field member references"), function EmitMemberExpr, file CGExpr.cpp, line 1156. In-Reply-To: References: Message-ID: <20100222184430.556612A6C1BA@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5392 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:30 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:30 -0600 (CST) Subject: [LLVMbugs] [Bug 1003] ICE when compiling LLVM TOT In-Reply-To: References: Message-ID: <20100222184430.7CF7A2A6C1BE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1003 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:30 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:30 -0600 (CST) Subject: [LLVMbugs] [Bug 689] llvm-g++ produces non-working output In-Reply-To: References: Message-ID: <20100222184430.D5AA82A6C1BC@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=689 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:35 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:35 -0600 (CST) Subject: [LLVMbugs] [Bug 726] [scev] Incorrect evaluation of {10, +, 9, -1} @ 2 In-Reply-To: References: Message-ID: <20100222184435.EF0632A6C1C8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=726 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:31 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:31 -0600 (CST) Subject: [LLVMbugs] [Bug 1545] Assertion failed during codegeneration of the easy FP code In-Reply-To: References: Message-ID: <20100222184431.AD3EF2A6C1BE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1545 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:25 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:25 -0600 (CST) Subject: [LLVMbugs] [Bug 1250] Invalid conversion of mode attribute. In-Reply-To: References: Message-ID: <20100222184425.7A4A72A6C1D2@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1250 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:36 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:36 -0600 (CST) Subject: [LLVMbugs] [Bug 1089] Assertion failure in llvm-internal.h In-Reply-To: References: Message-ID: <20100222184436.EA2EB2A6C1D2@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1089 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:32 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:32 -0600 (CST) Subject: [LLVMbugs] [Bug 1131] llvm-gcc doesn't handle struct-returning stdcall functions right In-Reply-To: References: Message-ID: <20100222184432.6DCED2A6C1D2@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1131 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:32 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:32 -0600 (CST) Subject: [LLVMbugs] [Bug 5222] Funky invalid allocation of abstract class error. In-Reply-To: References: Message-ID: <20100222184432.C62D42A6C1BC@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5222 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:37 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:37 -0600 (CST) Subject: [LLVMbugs] [Bug 1480] reefrefreergtreg In-Reply-To: References: Message-ID: <20100222184437.EDD672A6C1BE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1480 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:33 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:33 -0600 (CST) Subject: [LLVMbugs] [Bug 2944] clang svn crash on Debian Lenny in mksh cvs file jobs.c In-Reply-To: References: Message-ID: <20100222184433.41A712A6C1DD@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2944 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:33 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:33 -0600 (CST) Subject: [LLVMbugs] [Bug 6187] load functions in xmmintrin.h should expect const parameters In-Reply-To: References: Message-ID: <20100222184433.862812A6C1BC@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6187 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:33 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:33 -0600 (CST) Subject: [LLVMbugs] [Bug 1298] ARM bad code: constants materialization inside loops In-Reply-To: References: Message-ID: <20100222184433.B72552A6C1D6@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1298 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:36 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:36 -0600 (CST) Subject: [LLVMbugs] [Bug 4013] sema should reject: char *p; double d = (double)p; In-Reply-To: References: Message-ID: <20100222184436.30E272A6C1D6@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4013 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:34 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:34 -0600 (CST) Subject: [LLVMbugs] [Bug 1452] typo in getelementptr docs In-Reply-To: References: Message-ID: <20100222184434.65F0F2A6C1BC@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1452 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:34 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:34 -0600 (CST) Subject: [LLVMbugs] [Bug 5661] checker-228 fails to find include files in some cases In-Reply-To: References: Message-ID: <20100222184434.960C92A6C1D6@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5661 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:34 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:34 -0600 (CST) Subject: [LLVMbugs] [Bug 2840] Inconvenient display of some C macro expansions in scan-build output In-Reply-To: References: Message-ID: <20100222184434.DB00B2A6C1BC@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2840 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:28 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:28 -0600 (CST) Subject: [LLVMbugs] [Bug 174] [taildup] Tail duplication does not update SSA form correctly In-Reply-To: References: Message-ID: <20100222184428.AB2462A6C1D5@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=174 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:37 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:37 -0600 (CST) Subject: [LLVMbugs] [Bug 736] Indirect call crashes JIT on x86 / Darwin In-Reply-To: References: Message-ID: <20100222184437.5EC792A6C1C8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=736 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:35 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:35 -0600 (CST) Subject: [LLVMbugs] [Bug 6020] boost: error: cannot compile this global variable that binds to a reference yet In-Reply-To: References: Message-ID: <20100222184435.21E002A6C1D6@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6020 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:37 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:37 -0600 (CST) Subject: [LLVMbugs] [Bug 3949] Attached code causes a hard assertion fault when running scan-build -store region In-Reply-To: References: Message-ID: <20100222184437.9535C2A6C1D2@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3949 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:38 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:38 -0600 (CST) Subject: [LLVMbugs] [Bug 5336] ssertion failed: (Loc.isValid() && "point of instantiation must be valid!"), function setPointOfInstantiation In-Reply-To: References: Message-ID: <20100222184438.D4BD32A6C1BE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5336 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:39 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:39 -0600 (CST) Subject: [LLVMbugs] [Bug 4893] Kleaver constraint solver parses shift_left (Shl) expression incorrectly In-Reply-To: References: Message-ID: <20100222184439.CADC52A6C1DE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4893 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:40 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:40 -0600 (CST) Subject: [LLVMbugs] [Bug 5524] clang c++ codegen crash with aggregate derived-to-base cast in default argument In-Reply-To: References: Message-ID: <20100222184440.200702A6C1DF@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5524 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:39 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:39 -0600 (CST) Subject: [LLVMbugs] [Bug 1272] Assertion failed generating code (ScheduleDAG.cpp:377) In-Reply-To: References: Message-ID: <20100222184439.7D5D32A6C1C8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1272 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:40 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:40 -0600 (CST) Subject: [LLVMbugs] [Bug 1181] C backend assertion: (castIsValid(getOpcode(), S, Ty) && "Illegal Trunc") In-Reply-To: References: Message-ID: <20100222184440.63D3C2A6C1E3@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1181 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:40 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:40 -0600 (CST) Subject: [LLVMbugs] [Bug 650] [llvm-gcc] llvm-expand.c asserts on initialization of static union In-Reply-To: References: Message-ID: <20100222184440.9E7442A6C1E5@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=650 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:43 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:43 -0600 (CST) Subject: [LLVMbugs] [Bug 413] All tools need a --version command-line switch In-Reply-To: References: Message-ID: <20100222184443.20F382A6C1E7@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=413 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:43 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:43 -0600 (CST) Subject: [LLVMbugs] [Bug 272] [llvmgcc] Invalid code created for complex division operation In-Reply-To: References: Message-ID: <20100222184443.D45972A6C1ED@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=272 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:44 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:44 -0600 (CST) Subject: [LLVMbugs] [Bug 5050] Missing derived to base conversion for implicit copy constructor call In-Reply-To: References: Message-ID: <20100222184444.5346A2A6C1F4@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5050 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:44 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:44 -0600 (CST) Subject: [LLVMbugs] [Bug 505] llvm-gcc assumes varargs are a pointer In-Reply-To: References: Message-ID: <20100222184445.0246D2A6C1EC@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=505 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:42 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:42 -0600 (CST) Subject: [LLVMbugs] [Bug 716] undef through phi doesn't collapse to undef In-Reply-To: References: Message-ID: <20100222184442.050252A6C1EA@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=716 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:52 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:52 -0600 (CST) Subject: [LLVMbugs] [Bug 22] Quip buggy In-Reply-To: References: Message-ID: <20100222184452.0BDE32A6C1F7@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=22 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:54 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:54 -0600 (CST) Subject: [LLVMbugs] [Bug 860] CommandLine errors are silent under llvm-gcc4 In-Reply-To: References: Message-ID: <20100222184454.E33242A6C1D6@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=860 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:55 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:55 -0600 (CST) Subject: [LLVMbugs] [Bug 2651] Lots of false positives on autoreleased CoreFoundation objects In-Reply-To: References: Message-ID: <20100222184455.802AF2A6C1DE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2651 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:56 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:56 -0600 (CST) Subject: [LLVMbugs] [Bug 6171] KLEE 64-bit Crashes on Some Coreutils In-Reply-To: References: Message-ID: <20100222184456.C382E2A6C1E4@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6171 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:47 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:47 -0600 (CST) Subject: [LLVMbugs] [Bug 1164] CBE can generate name conflicts In-Reply-To: References: Message-ID: <20100222184447.616182A6C1F8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1164 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:49 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:49 -0600 (CST) Subject: [LLVMbugs] [Bug 6316] missing sse intrinsics _mm_cvtt_ss2si and _mm_cvt_ss2si In-Reply-To: References: Message-ID: <20100222184449.4C96D2A6C1FF@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6316 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:52 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:52 -0600 (CST) Subject: [LLVMbugs] [Bug 5279] attribute 'aligned' silently ignored on typedefs In-Reply-To: References: Message-ID: <20100222184452.8FA0A2A6C1E5@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5279 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:45 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:45 -0600 (CST) Subject: [LLVMbugs] [Bug 5755] clang thinks a char* is a void* inside a function template body In-Reply-To: References: Message-ID: <20100222184445.72F9A2A6C1F3@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5755 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:22 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:22 -0600 (CST) Subject: [LLVMbugs] [Bug 591] The simplify-libcalls pass generates ill-formed LLVM code In-Reply-To: References: Message-ID: <20100222184222.3F51A2A6C17C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=591 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:42:22 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:42:22 -0600 (CST) Subject: [LLVMbugs] [Bug 1202] llc deadlock via memory corruption from TargetData::setAlignment In-Reply-To: References: Message-ID: <20100222184222.75B602A6C140@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1202 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:12 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:12 -0600 (CST) Subject: [LLVMbugs] [Bug 4771] crash on destructor synthesis in nested template In-Reply-To: References: Message-ID: <20100222184412.C12842A6C1BA@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4771 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:53 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:53 -0600 (CST) Subject: [LLVMbugs] [Bug 1379] Need support for eh-related builtins In-Reply-To: References: Message-ID: <20100222184453.CD23B2A6C1DE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1379 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:53 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:53 -0600 (CST) Subject: [LLVMbugs] [Bug 331] [X86/win32] Large allocas need incremental stack probing In-Reply-To: References: Message-ID: <20100222184453.4B6542A6C1F4@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=331 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:52 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:52 -0600 (CST) Subject: [LLVMbugs] [Bug 2441] gfortran.dg/pr21177.f90 causes an internal compiler error: Bus error In-Reply-To: References: Message-ID: <20100222184452.BBEBB2A6C1E3@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2441 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:58 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:58 -0600 (CST) Subject: [LLVMbugs] [Bug 853] Asmprinter emits cast of constant wrong In-Reply-To: References: Message-ID: <20100222184458.B808A2A6C1DA@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=853 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:54 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:54 -0600 (CST) Subject: [LLVMbugs] [Bug 1487] indvars pass creates dangling pointers in SCEV handles In-Reply-To: References: Message-ID: <20100222184454.26A6F2A6C1E4@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1487 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:55 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:55 -0600 (CST) Subject: [LLVMbugs] [Bug 646] llvm-test base directory for externals In-Reply-To: References: Message-ID: <20100222184455.3FC4B2A6C1E3@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=646 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:53 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:53 -0600 (CST) Subject: [LLVMbugs] [Bug 474] [vmcore] Type resolution code needs algorithmic improvements In-Reply-To: References: Message-ID: <20100222184453.101572A6C1F0@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=474 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:54 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:54 -0600 (CST) Subject: [LLVMbugs] [Bug 846] segmentation fault -inline -prune-eh In-Reply-To: References: Message-ID: <20100222184454.788742A6C1E2@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=846 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:00 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:00 -0600 (CST) Subject: [LLVMbugs] [Bug 397] [llvm-gcc] Inline function redefinitions error due to 'asm' function rename In-Reply-To: References: Message-ID: <20100222184500.57CCB2A6C1C8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=397 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:56 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:56 -0600 (CST) Subject: [LLVMbugs] [Bug 625] make install tries to install the CVS directories In-Reply-To: References: Message-ID: <20100222184456.886132A6C1D6@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=625 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:44 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:44 -0600 (CST) Subject: [LLVMbugs] [Bug 5172] Clang need to implement '#pragma redefine_extname' to support C++ on Solaris. In-Reply-To: References: Message-ID: <20100222184444.9A0592A6C1EF@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5172 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:57 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:57 -0600 (CST) Subject: [LLVMbugs] [Bug 93] [lowersetjmp] Lowersetjmp pass breaks dominance properties! In-Reply-To: References: Message-ID: <20100222184457.2484B2A6C1D2@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=93 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:57 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:57 -0600 (CST) Subject: [LLVMbugs] [Bug 4631] False positive with union initializer In-Reply-To: References: Message-ID: <20100222184457.6B38F2A6C1E2@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4631 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:02 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:02 -0600 (CST) Subject: [LLVMbugs] [Bug 5137] clang --print-file-name prints library for the wrong architecture In-Reply-To: References: Message-ID: <20100222184502.A7C7A2A6C1C8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5137 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:42 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:42 -0600 (CST) Subject: [LLVMbugs] [Bug 6275] Clang doesn't codegen calls to dllimport functions properly In-Reply-To: References: Message-ID: <20100222184442.E614E2A6C1DC@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6275 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:41 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:41 -0600 (CST) Subject: [LLVMbugs] [Bug 404] [loopsimplify] Loop simplify is really slow on 252.eon In-Reply-To: References: Message-ID: <20100222184441.A0BB42A6C1DA@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=404 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:44 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:44 -0600 (CST) Subject: [LLVMbugs] [Bug 5553] Some MSVC build warnings In-Reply-To: References: Message-ID: <20100222184444.2BA792A6C1F2@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5553 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:58 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:58 -0600 (CST) Subject: [LLVMbugs] [Bug 1024] use 16-byte stack alignment on x86-64 ELF In-Reply-To: References: Message-ID: <20100222184458.632282A6C1DC@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1024 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:43 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:43 -0600 (CST) Subject: [LLVMbugs] [Bug 4950] linking with -fblocks fails because _NSConcreteGlobalBlock is not defined In-Reply-To: References: Message-ID: <20100222184443.730B22A6C1AE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4950 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:03 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:03 -0600 (CST) Subject: [LLVMbugs] [Bug 759] TargetData should be optional In-Reply-To: References: Message-ID: <20100222184503.7D1DC2A6C1ED@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=759 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:47 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:47 -0600 (CST) Subject: [LLVMbugs] [Bug 193] [constantmerge] Merging globals can cause use of invalid pointers! In-Reply-To: References: Message-ID: <20100222184447.30F3F2A6C1C8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=193 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:59 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:59 -0600 (CST) Subject: [LLVMbugs] [Bug 708] [alpha] Missed bytezap opportunity In-Reply-To: References: Message-ID: <20100222184459.464592A6C1D2@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=708 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:04 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:04 -0600 (CST) Subject: [LLVMbugs] [Bug 1266] assertion failed in RegisterScavenging In-Reply-To: References: Message-ID: <20100222184504.C37C62A6C1E5@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1266 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:51 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:51 -0600 (CST) Subject: [LLVMbugs] [Bug 5826] dtors run twice In-Reply-To: References: Message-ID: <20100222184451.54A732A6C203@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5826 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:48 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:48 -0600 (CST) Subject: [LLVMbugs] [Bug 381] Problem with src/llvm/test/Programs/SingleSource/Benchmarks/Misc/mandel.c at FreeBSD using gcc3.4.x In-Reply-To: References: Message-ID: <20100222184448.CDDF02A6C1E6@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=381 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:50 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:50 -0600 (CST) Subject: [LLVMbugs] [Bug 947] llvm-gcc4 doesn't support GCC address of label extension In-Reply-To: References: Message-ID: <20100222184450.1FB412A6C1EB@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=947 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:59 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:59 -0600 (CST) Subject: [LLVMbugs] [Bug 4074] [Linux kernel] error: subscripted value is neither array nor pointer In-Reply-To: References: Message-ID: <20100222184459.7CCAD2A6C1E3@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4074 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:49 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:49 -0600 (CST) Subject: [LLVMbugs] [Bug 1013] Invalid assembly generated with DWARF2 and Obj-C GC In-Reply-To: References: Message-ID: <20100222184449.8AB3C2A6C200@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1013 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:48 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:48 -0600 (CST) Subject: [LLVMbugs] [Bug 641] [cbe] unreachable code not removable after running lowerinvoke In-Reply-To: References: Message-ID: <20100222184448.2166D2A6C1E0@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=641 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:00 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:00 -0600 (CST) Subject: [LLVMbugs] [Bug 713] [llvm-gcc] Crash on address of global array In-Reply-To: References: Message-ID: <20100222184500.88A962A6C1DC@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=713 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:06 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:06 -0600 (CST) Subject: [LLVMbugs] [Bug 4249] support generating intermediate files (suitable for bug reporting) on crashes In-Reply-To: References: Message-ID: <20100222184506.122192A6C1BC@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4249 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:00 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:00 -0600 (CST) Subject: [LLVMbugs] [Bug 213] Bogus string in query result In-Reply-To: References: Message-ID: <20100222184500.D43922A6C1E5@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=213 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:01 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:01 -0600 (CST) Subject: [LLVMbugs] [Bug 5529] clang c++ codegen crash generating delete call in virtual destructor In-Reply-To: References: Message-ID: <20100222184501.923852A6C1C8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5529 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:06 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:06 -0600 (CST) Subject: [LLVMbugs] [Bug 5345] clangs asserts on instantiating a template that uses a template type's [] operator In-Reply-To: References: Message-ID: <20100222184506.CA8F12A6C1E5@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5345 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:01 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:01 -0600 (CST) Subject: [LLVMbugs] [Bug 457] libpng and zlib should not be part of runtime dir In-Reply-To: References: Message-ID: <20100222184501.C89372A6C1E0@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=457 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:02 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:02 -0600 (CST) Subject: [LLVMbugs] [Bug 4356] FAIL: /etrade/llvm/klee/test/Feature/SetForking.c In-Reply-To: References: Message-ID: <20100222184502.2E4752A6C1C8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4356 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:02 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:02 -0600 (CST) Subject: [LLVMbugs] [Bug 6358] Clang rejects an out-of-line destructor declaration with the same name as a global function with horrible diagnostic In-Reply-To: References: Message-ID: <20100222184502.57A832A6C1E0@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6358 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:07 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:07 -0600 (CST) Subject: [LLVMbugs] [Bug 5762] clang doesn't allow invoking the type conversion operator using the "operator T()" syntax In-Reply-To: References: Message-ID: <20100222184507.A67DF2A6C1F3@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5762 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:03 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:03 -0600 (CST) Subject: [LLVMbugs] [Bug 4620] False positive: insufficient tracking of loop variables In-Reply-To: References: Message-ID: <20100222184503.2BA412A6C1DE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4620 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:03 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:03 -0600 (CST) Subject: [LLVMbugs] [Bug 3222] CheckAddressOfOperand() doesn't handle references to global functions In-Reply-To: References: Message-ID: <20100222184503.5ED822A6C1E5@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3222 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:08 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:08 -0600 (CST) Subject: [LLVMbugs] [Bug 253] [commandline] Remove dependency on boost In-Reply-To: References: Message-ID: <20100222184508.BE5742A6C1EE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=253 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:03 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:03 -0600 (CST) Subject: [LLVMbugs] [Bug 133] [C/C++] Bogus warning about taking the address of 'register' variable In-Reply-To: References: Message-ID: <20100222184503.E792F2A6C1E0@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=133 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:04 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:04 -0600 (CST) Subject: [LLVMbugs] [Bug 2813] filenames listed in "Analyzer Failures" table should show path In-Reply-To: References: Message-ID: <20100222184504.2C0BB2A6C19B@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2813 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:04 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:04 -0600 (CST) Subject: [LLVMbugs] [Bug 4695] assert fires when we have conflicting types of a previous declaration. In-Reply-To: References: Message-ID: <20100222184504.691EF2A6C1EA@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4695 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:09 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:09 -0600 (CST) Subject: [LLVMbugs] [Bug 1219] dag combine miscompilation of setlt In-Reply-To: References: Message-ID: <20100222184509.D4AB22A6C1EE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1219 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:05 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:05 -0600 (CST) Subject: [LLVMbugs] [Bug 1186] Assertion failure in PassManager.cpp:643 In-Reply-To: References: Message-ID: <20100222184505.177F32A6C1EA@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1186 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:11 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:11 -0600 (CST) Subject: [LLVMbugs] [Bug 1410] llc -enable-eh moves invoke calls out of the eh region In-Reply-To: References: Message-ID: <20100222184511.0BAF32A6C1FD@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1410 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:05 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:05 -0600 (CST) Subject: [LLVMbugs] [Bug 1048] Invalid operand # of TargetInstrInfo In-Reply-To: References: Message-ID: <20100222184505.8660A2A6C1E5@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1048 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:06 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:06 -0600 (CST) Subject: [LLVMbugs] [Bug 855] ICE on invalid array with size determined by sizeof incomplete type In-Reply-To: References: Message-ID: <20100222184506.564C92A6C1EE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=855 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:11 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:11 -0600 (CST) Subject: [LLVMbugs] [Bug 1010] CodeGen/X86/xmm-r64.ll failure on non-x86-64 hosts In-Reply-To: References: Message-ID: <20100222184511.CA9AB2A6C1F9@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1010 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:07 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:07 -0600 (CST) Subject: [LLVMbugs] [Bug 574] Constant constructor for nested entities causes crash In-Reply-To: References: Message-ID: <20100222184507.3F2DF2A6C1EE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=574 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:12 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:12 -0600 (CST) Subject: [LLVMbugs] [Bug 3931] clang driver is unnecessarely verbose In-Reply-To: References: Message-ID: <20100222184512.B95C92A6C1E0@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3931 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:07 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:07 -0600 (CST) Subject: [LLVMbugs] [Bug 1478] last try In-Reply-To: References: Message-ID: <20100222184507.70DE22A6C1F0@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1478 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:08 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:08 -0600 (CST) Subject: [LLVMbugs] [Bug 920] llvm-db should expose that trick where we view the CFG In-Reply-To: References: Message-ID: <20100222184508.43E0A2A6C1F4@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=920 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:13 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:13 -0600 (CST) Subject: [LLVMbugs] [Bug 3297] assertion failure when casting arrays to integers In-Reply-To: References: Message-ID: <20100222184513.A1D0C2A6C1EE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3297 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:09 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:09 -0600 (CST) Subject: [LLVMbugs] [Bug 162] [llvmgcc] Global unions initialization does not work in all cases In-Reply-To: References: Message-ID: <20100222184509.04D812A6C1EF@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=162 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:09 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:09 -0600 (CST) Subject: [LLVMbugs] [Bug 5590] clang attemps to layout forward declaration In-Reply-To: References: Message-ID: <20100222184509.5F1FC2A6C1F2@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5590 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:14 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:14 -0600 (CST) Subject: [LLVMbugs] [Bug 441] running make on an already built tree causes targets to be rebuilt In-Reply-To: References: Message-ID: <20100222184514.B97872A6C1F4@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=441 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:09 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:09 -0600 (CST) Subject: [LLVMbugs] [Bug 4144] [Linux kernel] clang crash, during IR generation In-Reply-To: References: Message-ID: <20100222184509.A7D382A6C1DE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4144 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:10 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:10 -0600 (CST) Subject: [LLVMbugs] [Bug 1237] Uninitialized variables in lib/CodeGen/MachOWriter.cpp In-Reply-To: References: Message-ID: <20100222184510.249F82A6C1EC@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1237 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:10 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:10 -0600 (CST) Subject: [LLVMbugs] [Bug 1110] break-crit-edges incorrectly updates idoms for unreachable code In-Reply-To: References: Message-ID: <20100222184510.9BCE52A6C1EC@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1110 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:15 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:15 -0600 (CST) Subject: [LLVMbugs] [Bug 3600] broken C++ diagnostic In-Reply-To: References: Message-ID: <20100222184515.AAC6C2A6C1EE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3600 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:10 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:10 -0600 (CST) Subject: [LLVMbugs] [Bug 6055] [PATCH]: FreeBSD C++ header includes In-Reply-To: References: Message-ID: <20100222184510.6ADD82A6C1DE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6055 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:11 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:11 -0600 (CST) Subject: [LLVMbugs] [Bug 231] should be able to build+install llvm runtime libraries separately In-Reply-To: References: Message-ID: <20100222184511.3A6A62A6C1EC@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=231 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:13 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:13 -0600 (CST) Subject: [LLVMbugs] [Bug 349] Accepting doesnt assign to logged in user. In-Reply-To: References: Message-ID: <20100222184513.D1BBB2A6C1FF@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=349 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:12 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:12 -0600 (CST) Subject: [LLVMbugs] [Bug 5967] static ctor miscompile (passmgr) In-Reply-To: References: Message-ID: <20100222184512.37EBE2A6C1E0@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5967 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:17 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:17 -0600 (CST) Subject: [LLVMbugs] [Bug 5301] Assertion when instantiating call using default argument In-Reply-To: References: Message-ID: <20100222184517.B444A2A6C202@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5301 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:18 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:18 -0600 (CST) Subject: [LLVMbugs] [Bug 3871] IPA: false positive due to failing to catch aliasing where receiver of message is returned to caller In-Reply-To: References: Message-ID: <20100222184518.BE9232A6C1F8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3871 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:07 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:07 -0600 (CST) Subject: [LLVMbugs] [Bug 954] Crash handling COMPONENT_REF at -m64 In-Reply-To: References: Message-ID: <20100222184507.E35822A6C1F7@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=954 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:14 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:14 -0600 (CST) Subject: [LLVMbugs] [Bug 5416] Running klee on Tutorial 1, demo.o In-Reply-To: References: Message-ID: <20100222184514.97D7D2A6C1F7@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5416 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:14 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:14 -0600 (CST) Subject: [LLVMbugs] [Bug 435] ICE in Feature.mc.packed In-Reply-To: References: Message-ID: <20100222184514.5D2AD2A6C1E0@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=435 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:19 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:19 -0600 (CST) Subject: [LLVMbugs] [Bug 1454] 8cLcBzrN In-Reply-To: References: Message-ID: <20100222184519.D49C02A6C1FF@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1454 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:15 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:15 -0600 (CST) Subject: [LLVMbugs] [Bug 633] Need an autoconf check for _setjmp/_longjmp In-Reply-To: References: Message-ID: <20100222184515.3073E2A6C1EE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=633 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:20 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:20 -0600 (CST) Subject: [LLVMbugs] [Bug 4558] False positive: assuming null for value previously assumed non-null In-Reply-To: References: Message-ID: <20100222184520.CEF232A6C206@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4558 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:15 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:15 -0600 (CST) Subject: [LLVMbugs] [Bug 1217] infinite loop in instcombine In-Reply-To: References: Message-ID: <20100222184515.E56252A6C1FD@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1217 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:16 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:16 -0600 (CST) Subject: [LLVMbugs] [Bug 4369] poor diagnostic for ctor mismatch In-Reply-To: References: Message-ID: <20100222184516.5EF592A6C1EE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4369 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:16 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:16 -0600 (CST) Subject: [LLVMbugs] [Bug 3608] clang driver should support .bc and .ll input In-Reply-To: References: Message-ID: <20100222184516.8FC492A6C1FF@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3608 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:19 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:19 -0600 (CST) Subject: [LLVMbugs] [Bug 2718] Messages sent to nil with size of return type larger than sizeof(void*) should be reported In-Reply-To: References: Message-ID: <20100222184519.225B72A6C1FF@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2718 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:17 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:17 -0600 (CST) Subject: [LLVMbugs] [Bug 1199] nightly test fails many tests In-Reply-To: References: Message-ID: <20100222184517.7BEA52A6C1FF@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1199 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:22 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:22 -0600 (CST) Subject: [LLVMbugs] [Bug 179] [licm] LICM promotes volatile memory locations to registers In-Reply-To: References: Message-ID: <20100222184522.BE7E12A6C20B@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=179 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:18 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:18 -0600 (CST) Subject: [LLVMbugs] [Bug 582] [indvars] Rewriter can invalidate iterator and crash In-Reply-To: References: Message-ID: <20100222184518.3CAC82A6C1FF@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=582 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:23 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:23 -0600 (CST) Subject: [LLVMbugs] [Bug 3821] Driver doesn't support -pthread flag In-Reply-To: References: Message-ID: <20100222184523.86DC92A6C1F8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3821 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:19 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:19 -0600 (CST) Subject: [LLVMbugs] [Bug 3591] "@ style argument lists are unsupported" vs. @ in directory name In-Reply-To: References: Message-ID: <20100222184519.7C7922A6C1F8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3591 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:20 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:20 -0600 (CST) Subject: [LLVMbugs] [Bug 508] [make install] Eliminate dependency on pax In-Reply-To: References: Message-ID: <20100222184520.157E62A6C1F8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=508 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:25 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:25 -0600 (CST) Subject: [LLVMbugs] [Bug 328] Can't disable LLC, JIT for nightly test script In-Reply-To: References: Message-ID: <20100222184525.3F1B62A6C208@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=328 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:20 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:20 -0600 (CST) Subject: [LLVMbugs] [Bug 4928] clang c++ crash with friend declaration of template In-Reply-To: References: Message-ID: <20100222184520.9C17E2A6C1F8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4928 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:44:39 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:44:39 -0600 (CST) Subject: [LLVMbugs] [Bug 6313] sema bug handling __sync_val_compare_and_swap/__sync_lock_test_and_set In-Reply-To: References: Message-ID: <20100222184439.14EE32A6C1D3@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6313 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:21 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:21 -0600 (CST) Subject: [LLVMbugs] [Bug 4211] False positive for +[NSData dataWithBytesNoCopy:length] In-Reply-To: References: Message-ID: <20100222184521.1FA7F2A6C20A@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4211 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:21 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:21 -0600 (CST) Subject: [LLVMbugs] [Bug 363] Loop unroller breaks on the attached code In-Reply-To: References: Message-ID: <20100222184521.8F4312A6C203@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=363 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:23 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:23 -0600 (CST) Subject: [LLVMbugs] [Bug 697] Linker chokes on global constant packed In-Reply-To: References: Message-ID: <20100222184523.E3DC62A6C208@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=697 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:22 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:22 -0600 (CST) Subject: [LLVMbugs] [Bug 5108] incorrect packed clang struct layout (prevents freebsd from booting) In-Reply-To: References: Message-ID: <20100222184522.5A34B2A6C1FF@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5108 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:22 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:22 -0600 (CST) Subject: [LLVMbugs] [Bug 676] llvm-gcc not using source include files for %llvm.dbg.stoppoint In-Reply-To: References: Message-ID: <20100222184522.8D7F22A6C201@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=676 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:28 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:28 -0600 (CST) Subject: [LLVMbugs] [Bug 4020] clang doesn't allow zero-sized arrays In-Reply-To: References: Message-ID: <20100222184528.04F542A6C200@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4020 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:23 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:23 -0600 (CST) Subject: [LLVMbugs] [Bug 825] X86 backend lacks 'A' inlineasm constraint In-Reply-To: References: Message-ID: <20100222184523.26B382A6C201@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=825 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:28 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:28 -0600 (CST) Subject: [LLVMbugs] [Bug 524] [X86] Linkonce symbols are not emitted to a link-once section In-Reply-To: References: Message-ID: <20100222184528.EF89D2A6C1FF@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=524 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:23 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:23 -0600 (CST) Subject: [LLVMbugs] [Bug 765] Properly describe CR architecture In-Reply-To: References: Message-ID: <20100222184523.B2A752A6C201@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=765 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:29 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:29 -0600 (CST) Subject: [LLVMbugs] [Bug 53] installation from source procedure undocumented In-Reply-To: References: Message-ID: <20100222184529.DBEAC2A6C1FB@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=53 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:25 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:25 -0600 (CST) Subject: [LLVMbugs] [Bug 208] "make install" for bytecodes should make bytecode-libs dir In-Reply-To: References: Message-ID: <20100222184525.15FB02A6C201@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=208 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:30 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:30 -0600 (CST) Subject: [LLVMbugs] [Bug 1319] Improve failure detection in llvm/test In-Reply-To: References: Message-ID: <20100222184530.AFA7C2A6C203@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1319 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:26 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:26 -0600 (CST) Subject: [LLVMbugs] [Bug 4995] Assertion failed: (!hasUninstantiatedDefaultArg() && "Default argument is not yet instantiated!") In-Reply-To: References: Message-ID: <20100222184526.0C3822A6C208@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4995 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:26 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:26 -0600 (CST) Subject: [LLVMbugs] [Bug 6110] clang doesn't accept covariant return type when the original return type is a template arg instantiated with a pointer type In-Reply-To: References: Message-ID: <20100222184526.73B902A6C214@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6110 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:25 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:25 -0600 (CST) Subject: [LLVMbugs] [Bug 1325] miscompilation due to switch -> shift/and code In-Reply-To: References: Message-ID: <20100222184525.773EA2A6C20F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1325 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:27 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:27 -0600 (CST) Subject: [LLVMbugs] [Bug 6327] Compiler assert on 'initalizer_list' style code: In-Reply-To: References: Message-ID: <20100222184527.172EF2A6C200@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6327 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:27 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:27 -0600 (CST) Subject: [LLVMbugs] [Bug 169] [levelraise] Calling verifyFunction implicitly requires dominator information! In-Reply-To: References: Message-ID: <20100222184527.3FB9E2A6C208@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=169 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:32 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:32 -0600 (CST) Subject: [LLVMbugs] [Bug 357] Improvements For Nightly Tester In-Reply-To: References: Message-ID: <20100222184532.CBF522A6C1D3@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=357 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:28 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:28 -0600 (CST) Subject: [LLVMbugs] [Bug 390] There should be a getFirstTerminator equivalent for SparcV9 In-Reply-To: References: Message-ID: <20100222184528.94F442A6C1FD@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=390 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:31 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:31 -0600 (CST) Subject: [LLVMbugs] [Bug 277] [llvmgcc] C front-end emits declarations much too aggressively In-Reply-To: References: Message-ID: <20100222184531.088B82A6C20D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=277 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:29 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:29 -0600 (CST) Subject: [LLVMbugs] [Bug 310] [tailduplicate] DemoteRegToStack breaks SSA form In-Reply-To: References: Message-ID: <20100222184529.551622A6C209@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=310 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:29 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:29 -0600 (CST) Subject: [LLVMbugs] [Bug 5509] error: comparison of distinct pointer types ('int *const *' and 'int **') In-Reply-To: References: Message-ID: <20100222184529.884682A6C1FF@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5509 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:31 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:31 -0600 (CST) Subject: [LLVMbugs] [Bug 6242] cannot "new" a struct with the same name of a function In-Reply-To: References: Message-ID: <20100222184531.BE1032A6C1D3@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6242 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:30 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:30 -0600 (CST) Subject: [LLVMbugs] [Bug 3960] Add an -all option to perform all tests In-Reply-To: References: Message-ID: <20100222184530.1AAA72A6C1FF@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3960 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:24 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:24 -0600 (CST) Subject: [LLVMbugs] [Bug 293] [loopsimplify] Incorrect update of dominator information In-Reply-To: References: Message-ID: <20100222184524.26C662A6C20D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=293 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:35 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:35 -0600 (CST) Subject: [LLVMbugs] [Bug 201] test/Programs/MultiSource/Applications/Burg/Makefile hardcodes yacc In-Reply-To: References: Message-ID: <20100222184535.C5AA32A6C1D3@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=201 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:06 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:06 -0600 (CST) Subject: [LLVMbugs] [Bug 4802] -Wcast-qual not implemented In-Reply-To: References: Message-ID: <20100222184506.888552A6C1E3@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4802 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:30 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:30 -0600 (CST) Subject: [LLVMbugs] [Bug 5880] clang c++ crash instantiating __builtin_offsetof In-Reply-To: References: Message-ID: <20100222184530.7BD4E2A6C206@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5880 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:31 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:31 -0600 (CST) Subject: [LLVMbugs] [Bug 1117] Assembler doesn't catch bad casts. In-Reply-To: References: Message-ID: <20100222184531.610CC2A6C1E5@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1117 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:31 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:31 -0600 (CST) Subject: [LLVMbugs] [Bug 513] [llvm-g++] Temporary lifetimes incorrect for short circuit logical operations In-Reply-To: References: Message-ID: <20100222184531.E82E12A6C1E5@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=513 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:34 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:34 -0600 (CST) Subject: [LLVMbugs] [Bug 3133] Miscompilation of absvdi2() In-Reply-To: References: Message-ID: <20100222184534.310E02A6C1D3@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3133 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:32 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:32 -0600 (CST) Subject: [LLVMbugs] [Bug 814] Building LLVM with crosscompiler In-Reply-To: References: Message-ID: <20100222184532.294C32A6C201@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=814 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:32 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:32 -0600 (CST) Subject: [LLVMbugs] [Bug 5312] checker-0.223 do not report null pointer using In-Reply-To: References: Message-ID: <20100222184532.8D79F2A6C1E5@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5312 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:34 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:34 -0600 (CST) Subject: [LLVMbugs] [Bug 5396] codegen for C++ dynamic global ctor wrong In-Reply-To: References: Message-ID: <20100222184534.C86642A6C1D3@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5396 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:33 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:33 -0600 (CST) Subject: [LLVMbugs] [Bug 1025] compiler abort with llvm.readcyclecounter on x86-64 In-Reply-To: References: Message-ID: <20100222184533.3CF8F2A6C1E5@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1025 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:33 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:33 -0600 (CST) Subject: [LLVMbugs] [Bug 559] SelectionDAG::viewGraph() is not portable In-Reply-To: References: Message-ID: <20100222184533.ADA8C2A6C1D3@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=559 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:24 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:24 -0600 (CST) Subject: [LLVMbugs] [Bug 4509] Crash with PCH (round 3) In-Reply-To: References: Message-ID: <20100222184524.BEDC82A6C1F8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4509 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:34 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:34 -0600 (CST) Subject: [LLVMbugs] [Bug 5487] overriding commandline args should still mark them unsupported In-Reply-To: References: Message-ID: <20100222184534.73FF22A6C1E8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5487 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:35 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:35 -0600 (CST) Subject: [LLVMbugs] [Bug 5217] Drop DejaGNU. In-Reply-To: References: Message-ID: <20100222184535.04D6E2A6C1E8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5217 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:35 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:35 -0600 (CST) Subject: [LLVMbugs] [Bug 2705] Unify and extend path handling in index.html In-Reply-To: References: Message-ID: <20100222184535.4E2DC2A6C1D3@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2705 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:37 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:37 -0600 (CST) Subject: [LLVMbugs] [Bug 19] gccld assumes first file is a bytecode file In-Reply-To: References: Message-ID: <20100222184537.17EF62A6C1D3@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=19 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:38 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:38 -0600 (CST) Subject: [LLVMbugs] [Bug 298] [llvmgcc] Variable length array indexing miscompiled In-Reply-To: References: Message-ID: <20100222184538.8B0972A6C206@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=298 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:37 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:37 -0600 (CST) Subject: [LLVMbugs] [Bug 354] Default bugzilla columns aren't very useful for LLVM In-Reply-To: References: Message-ID: <20100222184537.7CEC32A6C1F8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=354 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:39 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:39 -0600 (CST) Subject: [LLVMbugs] [Bug 610] [llvmgcc] Global variable incorrectly marked weak In-Reply-To: References: Message-ID: <20100222184539.2402B2A6C208@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=610 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:37 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:37 -0600 (CST) Subject: [LLVMbugs] [Bug 2597] Releases should be accompanied by release notes. In-Reply-To: References: Message-ID: <20100222184537.E98D12A6C203@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2597 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:41 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:41 -0600 (CST) Subject: [LLVMbugs] [Bug 481] [llvmgcc] Crash on invalid va_start In-Reply-To: References: Message-ID: <20100222184541.C296A2A6C20C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=481 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:43 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:43 -0600 (CST) Subject: [LLVMbugs] [Bug 5782] Clang should help to find redundant #includes In-Reply-To: References: Message-ID: <20100222184543.973BD2A6C218@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5782 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:39 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:39 -0600 (CST) Subject: [LLVMbugs] [Bug 2778] [meta] clang errors from DragonFly BSD kernel build In-Reply-To: References: Message-ID: <20100222184539.E96762A6C1F3@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2778 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:40 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:40 -0600 (CST) Subject: [LLVMbugs] [Bug 787] Windows Native mangles bytecode output using cout In-Reply-To: References: Message-ID: <20100222184540.779912A6C1FD@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=787 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:44 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:44 -0600 (CST) Subject: [LLVMbugs] [Bug 438] pinodes pass doesn't work In-Reply-To: References: Message-ID: <20100222184544.B544C2A6C21A@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=438 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:47 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:47 -0600 (CST) Subject: [LLVMbugs] [Bug 1467] Java component In-Reply-To: References: Message-ID: <20100222184547.B9E1E2A6C20D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1467 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:49 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:49 -0600 (CST) Subject: [LLVMbugs] [Bug 2978] checker false positive: instance variable was retained by a synthesized property but wasn't released in 'dealloc' In-Reply-To: References: Message-ID: <20100222184549.154882A6C224@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2978 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:49 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:49 -0600 (CST) Subject: [LLVMbugs] [Bug 707] [loops] Should "unswitch" trivial conditions In-Reply-To: References: Message-ID: <20100222184549.9707A2A6C226@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=707 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:45 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:45 -0600 (CST) Subject: [LLVMbugs] [Bug 5895] clang++: fails to compile BasicAliasAnalysis.cpp: "Missing address point for class" In-Reply-To: References: Message-ID: <20100222184545.AE09F2A6C21F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5895 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:52 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:52 -0600 (CST) Subject: [LLVMbugs] [Bug 824] fails with -mcmodel=kernel on i386 In-Reply-To: References: Message-ID: <20100222184552.D9B2B2A6C22B@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=824 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:45 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:45 -0600 (CST) Subject: [LLVMbugs] [Bug 6270] Clang assembler errors out when invoked using make -j3 In-Reply-To: References: Message-ID: <20100222184545.77DFB2A6C21C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6270 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:54 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:54 -0600 (CST) Subject: [LLVMbugs] [Bug 3052] CellSPU Cannot yet select: i32 = setcc In-Reply-To: References: Message-ID: <20100222184554.B09212A6C223@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3052 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:48 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:48 -0600 (CST) Subject: [LLVMbugs] [Bug 2679] Request analysis of "lock" leakage In-Reply-To: References: Message-ID: <20100222184548.5DA182A6C219@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2679 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:47 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:47 -0600 (CST) Subject: [LLVMbugs] [Bug 1108] CodeGen/Generic/vector-identity-shuffle.ll regression fails on x86_64 In-Reply-To: References: Message-ID: <20100222184548.0077B2A6C227@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1108 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:59 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:59 -0600 (CST) Subject: [LLVMbugs] [Bug 99] Interpreter does not support the vaarg instruction In-Reply-To: References: Message-ID: <20100222184559.617F62A6C1F8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=99 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:50 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:50 -0600 (CST) Subject: [LLVMbugs] [Bug 6317] Clang gets confused with nested classes and friend declarations In-Reply-To: References: Message-ID: <20100222184550.2EEE52A6C21E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6317 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:00 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:00 -0600 (CST) Subject: [LLVMbugs] [Bug 246] configure does not detect gcc-3.3.3 as a gcc compiler In-Reply-To: References: Message-ID: <20100222184600.5C75A2A6C1F8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=246 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:47 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:47 -0600 (CST) Subject: [LLVMbugs] [Bug 554] "ImmutablePass" link is incorrect In-Reply-To: References: Message-ID: <20100222184547.418772A6C211@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=554 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:50 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:50 -0600 (CST) Subject: [LLVMbugs] [Bug 659] llvm-gcc should support attribute(section) In-Reply-To: References: Message-ID: <20100222184550.E2F642A6C229@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=659 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:52 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:52 -0600 (CST) Subject: [LLVMbugs] [Bug 4952] [Diagnostics] Explain two-phase name lookup In-Reply-To: References: Message-ID: <20100222184552.226FC2A6C21D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4952 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:41 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:41 -0600 (CST) Subject: [LLVMbugs] [Bug 779] Upgrade doxygen program on Zion In-Reply-To: References: Message-ID: <20100222184541.909A72A6C20E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=779 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:41 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:41 -0600 (CST) Subject: [LLVMbugs] [Bug 5857] Assertion failed: (ValMgr.getContext().hasSameUnqualifiedType(castTy, T)), function CastRetrievedVal In-Reply-To: References: Message-ID: <20100222184541.38A522A6C209@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5857 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:51 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:51 -0600 (CST) Subject: [LLVMbugs] [Bug 30] [llvm-ar] Command line arguments have funny syntax In-Reply-To: References: Message-ID: <20100222184551.DB7812A6C1FD@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=30 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:53 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:53 -0600 (CST) Subject: [LLVMbugs] [Bug 3893] Clang passes Duplicate arguments to clang-cc In-Reply-To: References: Message-ID: <20100222184553.39DE82A6C1F3@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3893 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:53 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:53 -0600 (CST) Subject: [LLVMbugs] [Bug 223] [loopsimplify] Loopsimplify incorrectly updates dominator information In-Reply-To: References: Message-ID: <20100222184553.5A7E52A6C22F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=223 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:01 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:01 -0600 (CST) Subject: [LLVMbugs] [Bug 170] The lists1 Shootout C++ test miscompiles In-Reply-To: References: Message-ID: <20100222184601.04E932A6C20D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=170 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:51 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:51 -0600 (CST) Subject: [LLVMbugs] [Bug 548] [instcombine] miscompilation of setcc or setcc in some cases In-Reply-To: References: Message-ID: <20100222184551.704D32A6C20C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=548 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:52 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:52 -0600 (CST) Subject: [LLVMbugs] [Bug 1030] __APPLE_CC__ is incorrectly defined on Linux In-Reply-To: References: Message-ID: <20100222184552.68BE22A6C22D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1030 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:53 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:53 -0600 (CST) Subject: [LLVMbugs] [Bug 113] [llvm-gcc] crash assigning into an array in a struct which contains a bitfield In-Reply-To: References: Message-ID: <20100222184553.A80332A6C20D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=113 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:54 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:54 -0600 (CST) Subject: [LLVMbugs] [Bug 597] InstrCombine breaks 126.gcc In-Reply-To: References: Message-ID: <20100222184554.3EECF2A6C230@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=597 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:54 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:54 -0600 (CST) Subject: [LLVMbugs] [Bug 778] Doxygen Documentation Is Lacking In-Reply-To: References: Message-ID: <20100222184554.F3D682A6C237@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=778 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:54 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:54 -0600 (CST) Subject: [LLVMbugs] [Bug 276] llvm-g++ does not mangle method names that match stdlib function names In-Reply-To: References: Message-ID: <20100222184554.6654B2A6C224@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=276 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:57 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:57 -0600 (CST) Subject: [LLVMbugs] [Bug 5083] New: LLVM ERROR: Cannot yet select: 0x1ba3410: i64 = X86ISD::Wrapper 0x1ba3b10 Message-ID: http://llvm.org/bugs/show_bug.cgi?id=5083 Summary: LLVM ERROR: Cannot yet select: 0x1ba3410: i64 = X86ISD::Wrapper 0x1ba3b10 Product: new-bugs Version: 2.6 Platform: Other OS/Version: Linux Status: RESOLVED Severity: normal Priority: P2 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: martin.nowack at inf.tu-dresden.de CC: llvmbugs at cs.uiuc.edu Estimated Hours: 0.0 Martin Nowack changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |DUPLICATE llc crashes using the attached reduced bugpoint file. I do not have a glue what the reason is. The current llvm version I use is 2.6. Thanks for help. --- Comment #1 from Martin Nowack 2009-09-28 08:25:14 CDT --- *** This bug has been marked as a duplicate of bug 5081 *** -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:42 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:42 -0600 (CST) Subject: [LLVMbugs] [Bug 181] C front-end has an inefficient implementation of the LLVM type-system In-Reply-To: References: Message-ID: <20100222184542.4E44C2A6C215@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=181 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:55 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:55 -0600 (CST) Subject: [LLVMbugs] [Bug 221] [llvm-gcc] miscompilation of 'X = Y = Z' with aggregate values In-Reply-To: References: Message-ID: <20100222184555.77C1B2A6C236@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=221 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:42 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:42 -0600 (CST) Subject: [LLVMbugs] [Bug 6184] Function template definition outside namespace interpreted as variable decl. In-Reply-To: References: Message-ID: <20100222184542.D489C2A6C216@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6184 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:55 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:55 -0600 (CST) Subject: [LLVMbugs] [Bug 5646] [code cleanup] rework C++ AST representation of cleanups In-Reply-To: References: Message-ID: <20100222184555.C859C2A6C239@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5646 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:43 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:43 -0600 (CST) Subject: [LLVMbugs] [Bug 419] JIT Needs To Support Arbitrary Function Call In-Reply-To: References: Message-ID: <20100222184543.D6A0D2A6C214@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=419 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:56 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:56 -0600 (CST) Subject: [LLVMbugs] [Bug 6312] Clang: __builtin_longjmp should be marked noreturn In-Reply-To: References: Message-ID: <20100222184556.2E0E42A6C202@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6312 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:02 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:02 -0600 (CST) Subject: [LLVMbugs] [Bug 4829] no built in exception specifications for new/delete In-Reply-To: References: Message-ID: <20100222184602.692F62A6C20A@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4829 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:56 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:56 -0600 (CST) Subject: [LLVMbugs] [Bug 271] [zlib runtime] Warnings during build from zlib In-Reply-To: References: Message-ID: <20100222184556.B44CC2A6C21D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=271 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:55 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:55 -0600 (CST) Subject: [LLVMbugs] [Bug 6023] Clang should compile boost In-Reply-To: References: Message-ID: <20100222184555.4E4E72A6C226@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6023 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:56 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:56 -0600 (CST) Subject: [LLVMbugs] [Bug 1571] signext attribute test ABI dependent In-Reply-To: References: Message-ID: <20100222184556.7EC7E2A6C209@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1571 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:03 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:03 -0600 (CST) Subject: [LLVMbugs] [Bug 1288] Not so hot code produced for Ada array traversal: sintzero In-Reply-To: References: Message-ID: <20100222184603.4B6202A6C209@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1288 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:57 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:57 -0600 (CST) Subject: [LLVMbugs] [Bug 6076] Lvalue-to-Rvalue conversion applied to left side of comma operator In-Reply-To: References: Message-ID: <20100222184557.663942A6C20C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6076 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:57 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:57 -0600 (CST) Subject: [LLVMbugs] [Bug 6001] missing vtable entries In-Reply-To: References: Message-ID: <20100222184557.3369F2A6C1E8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6001 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:45 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:45 -0600 (CST) Subject: [LLVMbugs] [Bug 1060] ParseAssemblyString does not allow already existing names In-Reply-To: References: Message-ID: <20100222184545.DA0102A6C220@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1060 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:04 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:04 -0600 (CST) Subject: [LLVMbugs] [Bug 682] Use ET-forests to replace domset/postdomset In-Reply-To: References: Message-ID: <20100222184604.6B20B2A6C1FB@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=682 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:48 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:48 -0600 (CST) Subject: [LLVMbugs] [Bug 5433] clang c++ wrong linkage for const global variable In-Reply-To: References: Message-ID: <20100222184548.AEEFA2A6C21B@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5433 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:00 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:00 -0600 (CST) Subject: [LLVMbugs] [Bug 4824] Clang does not build, because of invalid code recently added In-Reply-To: References: Message-ID: <20100222184600.8AD4B2A6C211@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4824 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:41 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:41 -0600 (CST) Subject: [LLVMbugs] [Bug 5947] ARM debug info: Assertion failed: (MI && "DbgScope does not have last instruction!") In-Reply-To: References: Message-ID: <20100222184541.F15C72A6C213@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5947 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:04 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:04 -0600 (CST) Subject: [LLVMbugs] [Bug 563] SparcV9 Backend asserts on shr constant expression In-Reply-To: References: Message-ID: <20100222184604.DBD392A6C20A@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=563 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:58 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:58 -0600 (CST) Subject: [LLVMbugs] [Bug 4630] false warning with nonnull attribute In-Reply-To: References: Message-ID: <20100222184558.49C4A2A6C202@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4630 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:49 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:49 -0600 (CST) Subject: [LLVMbugs] [Bug 6128] multiple global variable definition in C++ not detected by clang In-Reply-To: References: Message-ID: <20100222184549.6D8002A6C228@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6128 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:58 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:58 -0600 (CST) Subject: [LLVMbugs] [Bug 282] ICE Compiling XPS In-Reply-To: References: Message-ID: <20100222184558.C86392A6C209@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=282 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:00 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:00 -0600 (CST) Subject: [LLVMbugs] [Bug 833] valid inline asm rejected In-Reply-To: References: Message-ID: <20100222184600.C59472A6C202@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=833 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:49 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:49 -0600 (CST) Subject: [LLVMbugs] [Bug 5328] -pedantic cant be specified more than once In-Reply-To: References: Message-ID: <20100222184549.F18032A6C222@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5328 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:59 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:59 -0600 (CST) Subject: [LLVMbugs] [Bug 1004] Problem with CodeExtractor.cpp In-Reply-To: References: Message-ID: <20100222184559.C61392A6C1E8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1004 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:59 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:59 -0600 (CST) Subject: [LLVMbugs] [Bug 6156] Assertion (Expressions can't have reference type) when declaring a constructor for a class with a const reference template parameter In-Reply-To: References: Message-ID: <20100222184559.386F82A6C202@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6156 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:04 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:04 -0600 (CST) Subject: [LLVMbugs] [Bug 4077] [Linux kernel] inscrutable error on inline asm input/output constraint mismatch In-Reply-To: References: Message-ID: <20100222184604.B1F8F2A6C1E8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4077 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:38 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:38 -0600 (CST) Subject: [LLVMbugs] [Bug 1406] Assertion failed in RegisterScavenging In-Reply-To: References: Message-ID: <20100222184538.57F3C2A6C20A@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1406 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:03 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:03 -0600 (CST) Subject: [LLVMbugs] [Bug 5681] instantiation of elaborated type specifiers does ordinary lookup In-Reply-To: References: Message-ID: <20100222184603.F36692A6C1E4@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5681 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:02 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:02 -0600 (CST) Subject: [LLVMbugs] [Bug 1101] ScalarEvolution can't find iteration count without tail duplication In-Reply-To: References: Message-ID: <20100222184602.E5C122A6C1F8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1101 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:02 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:02 -0600 (CST) Subject: [LLVMbugs] [Bug 993] Running -inline -prune-eh on testcase crashes with assert In-Reply-To: References: Message-ID: <20100222184602.9BE702A6C20E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=993 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:01 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:01 -0600 (CST) Subject: [LLVMbugs] [Bug 3993] clang : not gcc compatibility mode In-Reply-To: References: Message-ID: <20100222184601.A83CF2A6C1E8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3993 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:38 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:38 -0600 (CST) Subject: [LLVMbugs] [Bug 1111] instcombine miscompiles fp X == X In-Reply-To: References: Message-ID: <20100222184538.E0A3D2A6C1FB@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1111 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:05 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:05 -0600 (CST) Subject: [LLVMbugs] [Bug 6079] Crash: LHS in member-access is not of class type and member name is template-id In-Reply-To: References: Message-ID: <20100222184605.6FE972A6C1E8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6079 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:02 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:02 -0600 (CST) Subject: [LLVMbugs] [Bug 1245] llvm-as mis-reads some negative integers In-Reply-To: References: Message-ID: <20100222184602.350052A6C1E8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1245 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:04 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:04 -0600 (CST) Subject: [LLVMbugs] [Bug 469] JIT should write bytes more efficiently, allow machine code deallocation, allow growing code buffer In-Reply-To: References: Message-ID: <20100222184604.26E392A6C1E8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=469 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:03 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:03 -0600 (CST) Subject: [LLVMbugs] [Bug 5244] clang crashes when comparing enum members in some esoteric cases In-Reply-To: References: Message-ID: <20100222184603.A37F52A6C1E8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5244 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:05 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:05 -0600 (CST) Subject: [LLVMbugs] [Bug 530] Loop strength reduction should be more aggressive about handling integer values In-Reply-To: References: Message-ID: <20100222184605.1FEF92A6C1FB@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=530 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:46 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:46 -0600 (CST) Subject: [LLVMbugs] [Bug 1468] Geneal docs issue In-Reply-To: References: Message-ID: <20100222184546.B00AA2A6C206@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1468 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:05 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:05 -0600 (CST) Subject: [LLVMbugs] [Bug 5871] __PRETTY_FUNCTION__ for a member function of a local class is wrong In-Reply-To: References: Message-ID: <20100222184605.E53CF2A6C20A@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5871 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:05 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:05 -0600 (CST) Subject: [LLVMbugs] [Bug 5714] C++ compiled program crashes In-Reply-To: References: Message-ID: <20100222184605.BA0D82A6C1FB@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5714 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:06 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:06 -0600 (CST) Subject: [LLVMbugs] [Bug 5121] Can't call pointer-to-methods In-Reply-To: References: Message-ID: <20100222184606.380A22A6C1F8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5121 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:45:47 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:45:47 -0600 (CST) Subject: [LLVMbugs] [Bug 4951] Name lookup in non-dependent base classes In-Reply-To: References: Message-ID: <20100222184547.85D342A6C221@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4951 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:09 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:09 -0600 (CST) Subject: [LLVMbugs] [Bug 5500] clang fails to parse inline asm with :: in C++ mode In-Reply-To: References: Message-ID: <20100222184609.86FE22A6C211@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5500 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:08 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:08 -0600 (CST) Subject: [LLVMbugs] [Bug 5653] extern "C++" not transparent (string.h) In-Reply-To: References: Message-ID: <20100222184608.41A4D2A6C20A@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5653 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:09 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:09 -0600 (CST) Subject: [LLVMbugs] [Bug 6031] error: no type named 'iterator_category' in 'struct boost::ForwardIterator' In-Reply-To: References: Message-ID: <20100222184609.A5D062A6C21B@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6031 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:07 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:07 -0600 (CST) Subject: [LLVMbugs] [Bug 1193] missing optimization for bit-accurate types In-Reply-To: References: Message-ID: <20100222184607.D970D2A6C20C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1193 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:07 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:07 -0600 (CST) Subject: [LLVMbugs] [Bug 2695] false positive with lack of ==/!= or range checking between symbolic pointer values In-Reply-To: References: Message-ID: <20100222184607.9497D2A6C1F8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2695 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:50:08 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:50:08 -0600 (CST) Subject: [LLVMbugs] [Bug 6143] Add warning for C linkage function returning non-C type In-Reply-To: References: Message-ID: <20100222185151.CDE092A6C197@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6143 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:51:00 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:51:00 -0600 (CST) Subject: [LLVMbugs] [Bug 5086] bogus 'function foo is ambiguous' warning In-Reply-To: References: Message-ID: <20100222185153.596AA2A6C1AC@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5086 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:35 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:35 -0600 (CST) Subject: [LLVMbugs] [Bug 5513] clang c++ name lookup issue with template class inheriting from template class In-Reply-To: References: Message-ID: <20100222185154.506FF2A6C198@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5513 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:51:11 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:51:11 -0600 (CST) Subject: [LLVMbugs] [Bug 3019] HTMLDiagnostics can blow out the number of MacroIDs In-Reply-To: References: Message-ID: <20100222185154.DBB672A6C347@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3019 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:47:02 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:47:02 -0600 (CST) Subject: [LLVMbugs] [Bug 4768] Friend class template fails when referring to self In-Reply-To: References: Message-ID: <20100222185150.C8FC62A6C147@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4768 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:50:53 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:50:53 -0600 (CST) Subject: [LLVMbugs] [Bug 141] [llvm-gcc] Bitfields & large array don't mix well In-Reply-To: References: Message-ID: <20100222185150.E56C42A6C156@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=141 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:47:37 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:47:37 -0600 (CST) Subject: [LLVMbugs] [Bug 4683] Memory Leak False Positive (possible dup) In-Reply-To: References: Message-ID: <20100222185150.F3D9A2A6C15A@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4683 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:50 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:50 -0600 (CST) Subject: [LLVMbugs] [Bug 957] [simplifycfg] constantexpr divide evaluation made unconditional In-Reply-To: References: Message-ID: <20100222185151.032512A6C15B@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=957 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:51:13 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:51:13 -0600 (CST) Subject: [LLVMbugs] [Bug 6154] Modifying a collection that's being enumerated should produce an analyzer error In-Reply-To: References: Message-ID: <20100222185151.6B6162A6C164@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6154 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:49:56 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:49:56 -0600 (CST) Subject: [LLVMbugs] [Bug 4547] clang gives no "control reaches end of non-void function" warning In-Reply-To: References: Message-ID: <20100222185151.0E7882A6C162@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4547 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:07 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:07 -0600 (CST) Subject: [LLVMbugs] [Bug 4445] Erorr with template pack expansion inside decltype In-Reply-To: References: Message-ID: <20100222184607.26DE52A6C1FB@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4445 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:50:02 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:50:02 -0600 (CST) Subject: [LLVMbugs] [Bug 1567] Testcase 'CFrontend/exact-div-expr.c' Fails (sometimes) on 64bit In-Reply-To: References: Message-ID: <20100222185153.058102A6C1BB@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1567 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:50:37 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:50:37 -0600 (CST) Subject: [LLVMbugs] [Bug 5787] clang thinks a T& expression is a temporary of type T In-Reply-To: References: Message-ID: <20100222185151.C80D22A6C192@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5787 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:48:58 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:48:58 -0600 (CST) Subject: [LLVMbugs] [Bug 5567] clang crashes when bitfields in union have type of integer but the integer is aligned at char boundaries. In-Reply-To: References: Message-ID: <20100222185152.139C22A6C184@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5567 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:51:38 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:51:38 -0600 (CST) Subject: [LLVMbugs] [Bug 4021] Arrays of type (int x[10]) do not properly decay to a pointer of type to the first element for '[x initObjc]' In-Reply-To: References: Message-ID: <20100222185152.E60462A6C1B5@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4021 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:47:11 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:47:11 -0600 (CST) Subject: [LLVMbugs] [Bug 5580] broken C++ bitfield layout In-Reply-To: References: Message-ID: <20100222185150.9092B2A6C140@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5580 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:49:13 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:49:13 -0600 (CST) Subject: [LLVMbugs] [Bug 104] [c++] C++ Frontend lays out superclasses like anonymous bitfields! In-Reply-To: References: Message-ID: <20100222185153.2C8EC2A6C19D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=104 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:25 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:25 -0600 (CST) Subject: [LLVMbugs] [Bug 1259] LiveVars assertion handling inline assembler. In-Reply-To: References: Message-ID: <20100222185156.77BA62A6C507@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1259 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:28 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:28 -0600 (CST) Subject: [LLVMbugs] [Bug 5937] -Wsign-compare should not warn for small unsigned bitfields In-Reply-To: References: Message-ID: <20100222185152.C3AC32A6C1A7@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5937 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:47:41 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:47:41 -0600 (CST) Subject: [LLVMbugs] [Bug 607] [llvmgcc] Union initialization crash In-Reply-To: References: Message-ID: <20100222185151.979C32A6C188@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=607 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:47:56 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:47:56 -0600 (CST) Subject: [LLVMbugs] [Bug 5473] nested classes inside templated classes cannot see static methods in parent class with same name as a non-static method in the parent class In-Reply-To: References: Message-ID: <20100222185153.420E72A6C1C4@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5473 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:51:43 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:51:43 -0600 (CST) Subject: [LLVMbugs] [Bug 839] inline asm doesn't support multiple alternatives In-Reply-To: References: Message-ID: <20100222185153.3ABCD2A6C1CB@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=839 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:15 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:15 -0600 (CST) Subject: [LLVMbugs] [Bug 11] [llvmg++] Code for executing destructors is not shared In-Reply-To: References: Message-ID: <20100222185153.33BD52A6C1A2@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=11 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:49:00 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:49:00 -0600 (CST) Subject: [LLVMbugs] [Bug 725] gcc crashing on linux x86 In-Reply-To: References: Message-ID: <20100222185151.3CC522A6C179@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=725 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:48:04 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:48:04 -0600 (CST) Subject: [LLVMbugs] [Bug 456] When building examples, executables show up in tools/ In-Reply-To: References: Message-ID: <20100222185154.C435E2A6C2E6@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=456 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:50:49 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:50:49 -0600 (CST) Subject: [LLVMbugs] [Bug 205] [llvmgcc] C front-end does not emit 'zeroinitializer' when possible In-Reply-To: References: Message-ID: <20100222185153.87E032A6C1BE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=205 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:50:35 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:50:35 -0600 (CST) Subject: [LLVMbugs] [Bug 12] what happened to UNCONFIRMED In-Reply-To: References: Message-ID: <20100222185153.55D502A6C1B3@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=12 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:50:43 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:50:43 -0600 (CST) Subject: [LLVMbugs] [Bug 4163] missing important CXXFLAGS for GNU toolchain in llvm-config In-Reply-To: References: Message-ID: <20100222185153.7283E2A6C1DA@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4163 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:50:37 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:50:37 -0600 (CST) Subject: [LLVMbugs] [Bug 1070] llvm-upgrade can cause redefinition errors In-Reply-To: References: Message-ID: <20100222185153.B2B322A6C1D8@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1070 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:50:54 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:50:54 -0600 (CST) Subject: [LLVMbugs] [Bug 3950] RFE: trivial, non-IPA [cm]alloc / free checking In-Reply-To: References: Message-ID: <20100222185154.819E02A6C22A@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3950 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:23 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:23 -0600 (CST) Subject: [LLVMbugs] [Bug 4064] [Linux kernel] TargetRegisterInfo::isPhysicalRegister assertion In-Reply-To: References: Message-ID: <20100222185153.5F5B42A6C1D2@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4064 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:49:00 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:49:00 -0600 (CST) Subject: [LLVMbugs] [Bug 5897] clang++: reject static_cast from const void* to const jmp_buf* In-Reply-To: References: Message-ID: <20100222185154.CFF672A6C21A@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5897 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:48:07 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:48:07 -0600 (CST) Subject: [LLVMbugs] [Bug 5742] Name lookup of conversion function templates In-Reply-To: References: Message-ID: <20100222185153.6CB722A6C1D6@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5742 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:50:32 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:50:32 -0600 (CST) Subject: [LLVMbugs] [Bug 1507] Break predicate simplifier free from ETForest In-Reply-To: References: Message-ID: <20100222185154.DEE8C2A6C1F0@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1507 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:51:07 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:51:07 -0600 (CST) Subject: [LLVMbugs] [Bug 4938] clang rejects asm '%' modifier on output constraints In-Reply-To: References: Message-ID: <20100222185154.254B72A6C1EE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4938 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:51:49 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:51:49 -0600 (CST) Subject: [LLVMbugs] [Bug 5385] fixit for missing includes In-Reply-To: References: Message-ID: <20100222185154.69B652A6C225@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5385 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:47:46 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:47:46 -0600 (CST) Subject: [LLVMbugs] [Bug 483] [llvmg++] Crash in C++ parser In-Reply-To: References: Message-ID: <20100222185154.7BD412A6C226@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=483 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:47:35 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:47:35 -0600 (CST) Subject: [LLVMbugs] [Bug 5682] Diagnose incomplete local classes before instantiation In-Reply-To: References: Message-ID: <20100222185150.DC4C72A6C150@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5682 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:29 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:29 -0600 (CST) Subject: [LLVMbugs] [Bug 4394] scan-build encountered errors analyzing wireshark-svn-28726 In-Reply-To: References: Message-ID: <20100222185153.B73A72A6C1EF@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4394 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:49:17 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:49:17 -0600 (CST) Subject: [LLVMbugs] [Bug 1277] Print error message if bytecode not read correctly In-Reply-To: References: Message-ID: <20100222185154.8AE372A6C238@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1277 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:49:14 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:49:14 -0600 (CST) Subject: [LLVMbugs] [Bug 5520] clang c++ assertion "Declaration context must already be complete" with templates In-Reply-To: References: Message-ID: <20100222185153.ECB992A6C1FC@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5520 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:49:49 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:49:49 -0600 (CST) Subject: [LLVMbugs] [Bug 1019] ParallelJIT requires pthread library, makefiles don't handle it right. In-Reply-To: References: Message-ID: <20100222185158.3F1B52A6C50F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1019 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:48:58 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:48:58 -0600 (CST) Subject: [LLVMbugs] [Bug 6064] Assertion failure synthesizing an implicitly defined copy constructor In-Reply-To: References: Message-ID: <20100222185153.B01FC2A6C1ED@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6064 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:48:23 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:48:23 -0600 (CST) Subject: [LLVMbugs] [Bug 229] [mem2reg] misoptimization of bison-1.875/src/scan-gram.c In-Reply-To: References: Message-ID: <20100222185155.817042A6C412@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=229 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:30 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:30 -0600 (CST) Subject: [LLVMbugs] [Bug 2444] gfortran.fortran-torture/execute/nullarg.f90 causes an internal compiler error in llvm-gfortran In-Reply-To: References: Message-ID: <20100222185153.640A22A6C1D4@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2444 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:48:32 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:48:32 -0600 (CST) Subject: [LLVMbugs] [Bug 1351] PPC inline asm: "I" modifier character not supportetd In-Reply-To: References: Message-ID: <20100222185157.A40F32A6C51A@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1351 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:10 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:10 -0600 (CST) Subject: [LLVMbugs] [Bug 4903] Buffer overflow in RegionStoreManager::RetrieveElement In-Reply-To: References: Message-ID: <20100222184610.24DFB2A6C220@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4903 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:23 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:23 -0600 (CST) Subject: [LLVMbugs] [Bug 5547] clang c++ codegen crash with operator new with default argument In-Reply-To: References: Message-ID: <20100222185200.46C032A6C6FD@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5547 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:48:03 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:48:03 -0600 (CST) Subject: [LLVMbugs] [Bug 1286] insertelement of undef generates horrible code (e.g. _mm_sll_epi16) In-Reply-To: References: Message-ID: <20100222185200.7AF8B2A6C17F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1286 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:49:57 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:49:57 -0600 (CST) Subject: [LLVMbugs] [Bug 4761] invalid diagnostic for template class constructor In-Reply-To: References: Message-ID: <20100222185201.0E6E12A6C308@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4761 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:49:01 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:49:01 -0600 (CST) Subject: [LLVMbugs] [Bug 719] llvm-gcc assertion failure when include file not found In-Reply-To: References: Message-ID: <20100222185156.186172A6C1AE@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=719 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:46:10 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:46:10 -0600 (CST) Subject: [LLVMbugs] [Bug 1364] Assertion failure in PassManager In-Reply-To: References: Message-ID: <20100222185157.0F33D2A6C4E1@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1364 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:50:38 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:50:38 -0600 (CST) Subject: [LLVMbugs] [Bug 5224] Constructor lookup failure with dependent type In-Reply-To: References: Message-ID: <20100222185157.70B032A6C299@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5224 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:48:13 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:48:13 -0600 (CST) Subject: [LLVMbugs] [Bug 692] llvm-g++ ICEs on illegal code In-Reply-To: References: Message-ID: <20100222185200.829032A6C74E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=692 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:51:36 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:51:36 -0600 (CST) Subject: [LLVMbugs] [Bug 5941] improve diagnostic for * vs & confusion In-Reply-To: References: Message-ID: <20100222185158.77EF52A6C49E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5941 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:51:00 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:51:00 -0600 (CST) Subject: [LLVMbugs] [Bug 2588] NSWindow only self-owns itself once it is displayed In-Reply-To: References: Message-ID: <20100222185158.7ECFD2A6C64C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2588 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 12:51:08 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 12:51:08 -0600 (CST) Subject: [LLVMbugs] [Bug 5923] extra diagnostic emitted after type error In-Reply-To: References: Message-ID: <20100222185201.24EEA2A6C7F1@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5923 LLVM Bugs List changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |llvmbugs at cs.uiuc.edu -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. From bugzilla-daemon at llvm.org Mon Feb 22 15:09:11 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 15:09:11 -0600 (CST) Subject: [LLVMbugs] [Bug 6378] error: illegal storage class on function In-Reply-To: References: Message-ID: <20100222210911.229D72A6C12E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6378 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |WONTFIX --- Comment #1 from Chris Lattner 2010-02-22 15:09:10 CST --- Clang doesn't support the GNU nested function extension, sorry. We have no plans to implement it. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Mon Feb 22 15:18:58 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 15:18:58 -0600 (CST) Subject: [LLVMbugs] [Bug 1354] Avoid compiling insn-attrtab.c etc. to build llvm-gcc In-Reply-To: References: Message-ID: <20100222211858.EA3AF2A6C124@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1354 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |WONTFIX --- Comment #6 from Chris Lattner 2010-02-22 15:18:58 CST --- Noone seems to care about this. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Mon Feb 22 15:20:54 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 15:20:54 -0600 (CST) Subject: [LLVMbugs] [Bug 4540] Change in case statement value generates incorrect code (crashes the runtime linker) In-Reply-To: References: Message-ID: <20100222212054.DF4982A6C12E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4540 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |WORKSFORME --- Comment #8 from Chris Lattner 2010-02-22 15:20:54 CST --- This is probably fixed. Please reopen with a smaller testcase if not. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Mon Feb 22 15:22:23 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 15:22:23 -0600 (CST) Subject: [LLVMbugs] [Bug 2075] (X86?) Backend generates reference to missing label In-Reply-To: References: Message-ID: <20100222212223.D35D62A6C12F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2075 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |WORKSFORME --- Comment #12 from Chris Lattner 2010-02-22 15:22:23 CST --- This old bug is probably fixed. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Mon Feb 22 15:26:09 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 15:26:09 -0600 (CST) Subject: [LLVMbugs] [Bug 6393] New: LLVM re-orders MXCSR access in an invalid manner Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6393 Summary: LLVM re-orders MXCSR access in an invalid manner Product: libraries Version: 2.6 Platform: PC OS/Version: Linux Status: NEW Severity: minor Priority: P5 Component: Backend: X86 AssignedTo: unassignedbugs at nondot.org ReportedBy: llvm at henning-thielemann.de CC: llvmbugs at cs.uiuc.edu Estimated Hours: 0.0 I want to write a vectorised 'floor' by setting the MXCSR register accordingly before converting a float vector to an integer vector. However it seems that LLVM is not aware of the dependency of the rounding operation on that global flag and reorders the instructions in an invalid way. My LLVM code is define <4 x float> @_floor(<4 x float>) { %oldmxcsr = alloca i32 call void @llvm.x86.sse.stmxcsr(i32* %oldmxcsr) %newmxcsr = alloca i32 store i32 8192, i32* %newmxcsr call void @llvm.x86.sse.ldmxcsr(i32* %newmxcsr) %floorInt = call <4 x i32> @llvm.x86.sse2.cvtps2dq(<4 x float> %0) readnone %result = sitofp <4 x i32> %floorInt to <4 x float> call void @llvm.x86.sse.ldmxcsr(i32* %oldmxcsr) ret <4 x float> %result } declare void @llvm.x86.sse.stmxcsr(i32*) nounwind declare void @llvm.x86.sse.ldmxcsr(i32*) nounwind declare <4 x i32> @llvm.x86.sse2.cvtps2dq(<4 x float>) nounwind readnone which is compiled to cvtps2dq %xmm0, %xmm0 cvtdq2ps %xmm0, %xmm0 stmxcsr 4(%esp) movl $8192, (%esp) ldmxcsr (%esp) ldmxcsr 4(%esp) One problem may be that in IntrinsicsX86.td the ldmxcsr instruction has attribute IntrWriteMem, where I would intuitively say that it must be IntrReadMem. As a work-around I just interpret the vector result of cmpps as integers (0 or -1) and add them for adjusting an truncation operation. define <4 x float> @_floor(<4 x float>) { %truncInt = fptosi <4 x float> %0 to <4 x i32> %truncFloat = sitofp <4 x i32> %truncInt to <4 x float> %gts = call <4 x float> @llvm.x86.sse.cmp.ps(<4 x float> %0, <4 x float> %truncFloat, i8 1) %gtsInt = bitcast <4 x float> %gts to <4 x i32> %gtsFloat = sitofp <4 x i32> %gtsInt to <4 x float> %result = add <4 x float> %truncFloat, %gtsFloat ret <4 x float> %result } declare <4 x float> @llvm.x86.sse.cmp.ps(<4 x float>, <4 x float>, i8) nounwind readnone This is compiled to cvttps2dq %xmm0, %xmm1 cvtdq2ps %xmm1, %xmm1 cmpltps %xmm1, %xmm0 cvtdq2ps %xmm0, %xmm0 addps %xmm1, %xmm0 This does not need to modify the MXCSR register at all and maybe it's even better than the solution of Floor rounding caused by MXCSR configuration. Btw. the same trick also works for implementation of a fraction function that always returns a number in the interval [0,1). -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Mon Feb 22 15:30:01 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 15:30:01 -0600 (CST) Subject: [LLVMbugs] [Bug 6349] miscompilation of volatile variables in msp430 backend In-Reply-To: References: Message-ID: <20100222213001.2CEF72A6C131@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6349 Anton Korobeynikov changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|WORKSFORME | --- Comment #4 from Anton Korobeynikov 2010-02-22 15:30:00 CST --- Hrm, sounds like msp430-as bug, if it does not support this expression - it should emit an error, not silently miscompile it... Anyone brave enough to hack on binutils sources? Or, maybe, there will be better to hook llvm asm parser machinery here? :) -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Mon Feb 22 15:48:45 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 15:48:45 -0600 (CST) Subject: [LLVMbugs] [Bug 6394] New: Optimizer swaps bitcast and getelementptr in an invalid way Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6394 Summary: Optimizer swaps bitcast and getelementptr in an invalid way Product: libraries Version: 2.6 Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P5 Component: Scalar Optimizations AssignedTo: unassignedbugs at nondot.org ReportedBy: llvm at henning-thielemann.de CC: llvmbugs at cs.uiuc.edu Estimated Hours: 0.0 I have written a custom malloc and free for vector aligned data, because as far as I can see, the C interface to LLVM does not provide an alignment parameter for malloc and without that, malloc does not choose 16 byte alignment for vectors. Anyway the following issue is certainly a bug. Consider the custom free routine that I have written: %wrap = type { float, <4 x float>* } define void @_myfree(float*) { _L1: %1 = bitcast float* %0 to %wrap* %2 = getelementptr %wrap* %1, i32 0, i32 1 %3 = load <4 x float>** %2 free <4 x float>* %3 ret void } It is compiled to movl 8(%esp), %eax movl 4(%eax), %eax movl %eax, (%esp) call free However, if I run optimization (opt -O1) I obtain define void @_myfree(float* nocapture) nounwind { _L1: %1 = getelementptr float* %0, i64 2 ; [#uses=1] %2 = bitcast float* %1 to <4 x float>** ; <<4 x float>**> [#uses=1] %3 = load <4 x float>** %2 ; <<4 x float>*> [#uses=1] free <4 x float>* %3 ret void } which is compiled to movl 8(%esp), %eax movl 8(%eax), %eax movl %eax, (%esp) call free which is certainly wrong. (See the differing displacement for (%eax).) -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Mon Feb 22 15:49:07 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 15:49:07 -0600 (CST) Subject: [LLVMbugs] [Bug 6395] New: ice: argument of incompatible type! Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6395 Summary: ice: argument of incompatible type! Product: new-bugs Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: enhancement Priority: P5 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: regehr at cs.utah.edu CC: llvmbugs at cs.uiuc.edu, chenyang at cs.utah.edu Estimated Hours: 0.0 regehr at john-home:~/volatile/bugs/tmp268$ clang -O3 small.c clang: /home/regehr/z/tmp/llvm-r96770/include/llvm/Support/Casting.h:200: typename llvm::cast_retty::ret_type llvm::cast(const Y&) [with X = llvm::Instruction, Y = llvm::Value*]: Assertion `isa(Val) && "cast() argument of incompatible type!"' failed. 0 clang 0x09175818 Stack dump: 0. Program arguments: /home/regehr/z/tmp/llvm-gcc-r96770-install/bin/clang -cc1 -triple i386-pc-linux-gnu -S -disable-free -main-file-name small.c -mrelocation-model static -mdisable-fp-elim -mconstructor-aliases -target-cpu pentium4 -resource-dir /home/regehr/z/tmp/llvm-gcc-r96770-install/lib/clang/1.1 -O3 -fmessage-length 95 -fgnu-runtime -fdiagnostics-show-option -fcolor-diagnostics -o /tmp/cc-SjoQmG.s -x c small.c 1. parser at end of file 2. Per-module optimization passes 3. Running pass 'CallGraph Pass Manager' on module 'small.c'. 4. Running pass 'Loop Pass Manager' on function '@int322' 5. Running pass 'Canonicalize Induction Variables' on basic block '%lbl_19' clang: error: compiler command failed due to signal 6 (use -v to see invocation) regehr at john-home:~/volatile/bugs/tmp268$ cat small.c extern void __assert_fail (__const char *__assertion, __const char *__file, unsigned int __line, __const char *__function) __attribute__ ((__noreturn__)); short g_35; void int322 (unsigned char p_13, short * const p_14, int int32p_15, short * int16p_17) { short l_18[5]; int i; for (i = 0; i < 1; i++) l_18[i] = 0; lbl_19:l_18[0] ^= 1; p_14 == &g_35 ? 0 : __assert_fail ("== &g_35", "small.c", 24, __PRETTY_FUNCTION__); goto lbl_19; } regehr at john-home:~/volatile/bugs/tmp268$ clang -v clang version 1.1 (trunk 96770) Target: i386-pc-linux-gnu Thread model: posix -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Mon Feb 22 16:03:17 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 16:03:17 -0600 (CST) Subject: [LLVMbugs] [Bug 6396] New: de-optimization of down-counting loops with i32 counter Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6396 Summary: de-optimization of down-counting loops with i32 counter Product: libraries Version: 2.6 Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P5 Component: Loop Optimizer AssignedTo: unassignedbugs at nondot.org ReportedBy: llvm at henning-thielemann.de CC: llvmbugs at cs.uiuc.edu I have written a simple loop using an i32 counter that counts from the number of repetitions down to zero. I hoped that x86 codegen could make use of the LOOP instruction. It does not, but this is not the main problem here. define i32 @_fun1(i32, float*) { _L1: br label %_L2 _L2: %2 = phi i32 [ %0, %_L1 ], [ %7, %_L3 ] %3 = phi float* [ %1, %_L1 ], [ %8, %_L3 ] %4 = phi float [ 1.000000e+00, %_L1 ], [ %6, %_L3 ] %5 = icmp ne i32 %2, 0 br i1 %5, label %_L3, label %_L5 _L3: %6 = fmul float %4, 0x3FEFFFE2E0000000 store float %4, float* %3 %7 = sub i32 %2, 1 %8 = getelementptr float* %3, i32 1 br label %_L2 _L5: %9 = sub i32 %0, %2 ret i32 %9 } This gets compiled to .LBB1_0: # %_L1 movl 4(%esp), %ecx incl %ecx movss .LCPI1_0, %xmm0 xorl %eax, %eax movl 8(%esp), %edx jmp .LBB1_2 .align 16 .LBB1_1: # %_L3 # Loop Depth 1 # Loop Header is BB1_2 # Inner Loop movss %xmm0, (%edx,%eax,4) incl %eax mulss .LCPI1_1, %xmm0 .LBB1_2: # %_L2 # Loop Depth 1 # Loop Header # Inner Loop decl %ecx jne .LBB1_1 I still wonder, why it does not just increase %edx, as I told it in the LLVM code. But the main problem follows: Optimization introduces a new counter that is 64 bit long and counts upwards: define i32 @_fun1(i32, float* nocapture) nounwind { _L1: %2 = icmp eq i32 %0, 0 ; [#uses=1] br i1 %2, label %_L5, label %bb.nph bb.nph: ; preds = %_L1 %tmp = zext i32 %0 to i64 ; [#uses=1] br label %_L3 _L3: ; preds = %_L3, %bb.nph %indvar = phi i64 [ 0, %bb.nph ], [ %indvar.next, %_L3 ] ; [#uses=2] %3 = phi float [ 1.000000e+00, %bb.nph ], [ %4, %_L3 ] ; [#uses=2] %scevgep = getelementptr float* %1, i64 %indvar ; [#uses=1] %4 = fmul float %3, 0x3FEFFFE2E0000000 ; [#uses=1] store float %3, float* %scevgep %indvar.next = add i64 %indvar, 1 ; [#uses=2] %exitcond = icmp eq i64 %indvar.next, %tmp ; [#uses=1] br i1 %exitcond, label %_L5, label %_L3 _L5: ; preds = %_L3, %_L1 %.lcssa = phi i32 [ %0, %_L1 ], [ 0, %_L3 ] ; [#uses=1] %5 = sub i32 %0, %.lcssa ; [#uses=1] ret i32 %5 } The assembly code does no longer look as nice as before: .LBB1_0: # %_L1 pushl %edi pushl %esi movl 12(%esp), %eax testl %eax, %eax je .LBB1_5 .LBB1_1: # %bb.nph movl 16(%esp), %ecx xorl %edx, %edx movss .LCPI1_0, %xmm0 movl %eax, %esi .align 16 .LBB1_2: # %_L3 # Loop Depth 1 # Loop Header # Inner Loop movss %xmm0, (%ecx) addl $4294967295, %esi adcl $4294967295, %edx movl %esi, %edi orl %edx, %edi addl $4, %ecx testl %edi, %edi mulss .LCPI1_1, %xmm0 jne .LBB1_2 .LBB1_3: # %_L3._L5_crit_edge xorl %ecx, %ecx .LBB1_4: # %_L5 subl %ecx, %eax popl %esi popl %edi ret .LBB1_5: # %_L1._L5_crit_edge movl %eax, %ecx jmp .LBB1_4 The 64 bit computation really adds more instructions but is unnecessary since the original LLVM code is satisfied with a 32 bit counter. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Mon Feb 22 16:13:33 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 16:13:33 -0600 (CST) Subject: [LLVMbugs] [Bug 6397] New: Intrinsics for DIV instruction on x86 Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6397 Summary: Intrinsics for DIV instruction on x86 Product: libraries Version: 2.6 Platform: PC OS/Version: Linux Status: NEW Severity: enhancement Priority: P5 Component: Backend: X86 AssignedTo: unassignedbugs at nondot.org ReportedBy: llvm at henning-thielemann.de CC: llvmbugs at cs.uiuc.edu I have implemented a simple random number generator based on linear concurrences. It needs a division and LLVM chooses to call __umoddi3 which is really slow. I can prove that the x86 instruction DIV cannot overflow, thus I like to use it. An intrinsic would be nice! ; The argument is always smaller than modulus 2147483399, ; thus 'urem' cannot overflow, ; thus we could use x86's 'div', ; but LLVM chooses to call the expensive __umoddi3 instead. define i32 @_rnd(i32) { %x = zext i32 %0 to i64 %y = mul i64 40692, %x %z = urem i64 %y, 2147483399 %r = trunc i64 %z to i32 ret i32 %r } This is code that is currently produced movl $40692, %eax mull 24(%esp) movl %edx, 4(%esp) movl %eax, (%esp) movl $0, 12(%esp) movl $2147483399, 8(%esp) call __umoddi3 -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Mon Feb 22 16:15:33 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 16:15:33 -0600 (CST) Subject: [LLVMbugs] [Bug 6398] New: clang++ segfaults when parsing c++ Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6398 Summary: clang++ segfaults when parsing c++ Product: clang Version: trunk Platform: Other OS/Version: FreeBSD Status: NEW Severity: normal Priority: P5 Component: -New Bugs AssignedTo: unassignedclangbugs at nondot.org ReportedBy: hinokind at gmail.com CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4289) --> (http://llvm.org/bugs/attachment.cgi?id=4289) testcase $ cat signal11.cpp class QObject; class QGenericArgument { static bool disconnect( QObject *sender, char *signal, QObject *receiver, char *member); bool disconnect( char *signal = 0, QObject *receiver = 0, char *member = 0) { return disconnect(this, signal, receiver, member); } } $ clang++ -fsyntax-only signal11.cpp signal11.cpp:8:18: error: no matching member function for call to 'disconnect' { return disconnect(this, signal, receiver, member); } ^~~~~~~~~~ Stack dump: 0. Program arguments: /usr/local/bin/clang -cc1 -triple x86_64-unknown-freebsd8.0 -fsyntax-only -disable-free -main-file-name signal11.cpp -mrelocation-model static -mdisable-fp-elim -mconstructor-aliases -munwind-tables -target-cpu x86-64 -resource-dir /usr/local/lib/clang/1.1 -fmessage-length 157 -fexceptions -fgnu-runtime -fdiagnostics-show-option -fcolor-diagnostics -x c++ signal11.cpp 1. signal11.cpp:8:59: current parser token ')' 2. signal11.cpp:2:1: parsing struct/union/class body 'QGenericArgument' 3. signal11.cpp:8:9: parsing function body 'QGenericArgument::disconnect' 4. signal11.cpp:8:9: in compound statement ('{}') clang: error: compiler command failed due to signal 11 (use -v to see invocation) -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Mon Feb 22 16:21:10 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 16:21:10 -0600 (CST) Subject: [LLVMbugs] [Bug 6399] New: Nicer code for i32 vector multiplications Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6399 Summary: Nicer code for i32 vector multiplications Product: libraries Version: 2.6 Platform: PC OS/Version: Linux Status: NEW Severity: enhancement Priority: P5 Component: Backend: X86 AssignedTo: unassignedbugs at nondot.org ReportedBy: llvm at henning-thielemann.de CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4290) --> (http://llvm.org/bugs/attachment.cgi?id=4290) Various LLVM implementations of integer vector multiplications For 32 bit integer vector multiplications LLVM currently produces not so nice code on SSE before SSE4. On SSE4 pmulld is called, which is certainly the best we can have. But on SSE2 we already have pmuludq which allows for several elegant implementations. Attached is a file containing functions that implement a certain vector multiplication (suffix 'a') and several alternative implementations that directly call pmuludq (suffix 'b'). The second file contains the assembly code produced by LLVM-2.6. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Mon Feb 22 17:28:16 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 17:28:16 -0600 (CST) Subject: [LLVMbugs] [Bug 6395] ice: argument of incompatible type! In-Reply-To: References: Message-ID: <20100222232816.BF0012A6C12D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6395 Dan Gohman changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Dan Gohman 2010-02-22 17:28:16 CST --- This was fixed in r96771. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Mon Feb 22 18:16:10 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 18:16:10 -0600 (CST) Subject: [LLVMbugs] [Bug 6358] Clang rejects an out-of-line destructor declaration with the same name as a global function with horrible diagnostic In-Reply-To: References: Message-ID: <20100223001610.7A6A12A6C131@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6358 Douglas Gregor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #3 from Douglas Gregor 2010-02-22 18:16:10 CST --- Ugh. Fixed here: http://lists.cs.uiuc.edu/pipermail/cfe-commits/Week-of-Mon-20100222/027806.html -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Mon Feb 22 18:17:01 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 18:17:01 -0600 (CST) Subject: [LLVMbugs] [Bug 6359] Clang rejects out-of-line destructors for classes which are typedef'ed to themselves In-Reply-To: References: Message-ID: <20100223001701.10E142A6C130@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6359 Douglas Gregor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #6 from Douglas Gregor 2010-02-22 18:17:00 CST --- Fixed here: http://lists.cs.uiuc.edu/pipermail/cfe-commits/Week-of-Mon-20100222/027806.html -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Mon Feb 22 19:11:22 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 19:11:22 -0600 (CST) Subject: [LLVMbugs] [Bug 2159] don't break doxygen every night In-Reply-To: References: Message-ID: <20100223011122.28AA72A6C12D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2159 Tanya Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |tonic at nondot.org Resolution| |FIXED --- Comment #3 from Tanya Lattner 2010-02-22 19:11:21 CST --- I've fixed this :) -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Mon Feb 22 19:28:21 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 19:28:21 -0600 (CST) Subject: [LLVMbugs] [Bug 3574] missed opt: ptrtoint(inttoptr (a -> b), c) -> sext In-Reply-To: References: Message-ID: <20100223012821.CD8C22A6C12C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3574 Dan Gohman changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |gohman at apple.com Resolution| |FIXED --- Comment #2 from Dan Gohman 2010-02-22 19:28:21 CST --- This is now fixed. inttoptr/ptrtoint always zero-extend, and the optimizer now transforms this code to a single zext. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Mon Feb 22 22:48:23 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 22:48:23 -0600 (CST) Subject: [LLVMbugs] [Bug 6400] New: clang codgen aborts producing an invalid store Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6400 Summary: clang codgen aborts producing an invalid store Product: clang Version: unspecified Platform: PC OS/Version: All Status: NEW Severity: enhancement Priority: P5 Component: C++ AssignedTo: unassignedclangbugs at nondot.org ReportedBy: rafael.espindola at gmail.com CC: llvmbugs at cs.uiuc.edu, dgregor at apple.com $ ./clang -cc1 -S -w -o test.ll -x c++-cpp-output test.ii -emit-llvm Instructions.cpp:1110: void llvm::StoreInst::AssertOK(): Assertion `getOperand(0)->getType() == cast(getOperand(1)->getType())->getElementType() && "Ptr must be a pointer to Val type!"' failed. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Mon Feb 22 23:06:37 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 23:06:37 -0600 (CST) Subject: [LLVMbugs] [Bug 6362] A potential bug in pragma pack In-Reply-To: References: Message-ID: <20100223050637.1DBEA2A6C12D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6362 Charles Davis changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #3 from Charles Davis 2010-02-22 23:06:36 CST --- Fixed. Fix committed as r96884. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Mon Feb 22 23:14:01 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Mon, 22 Feb 2010 23:14:01 -0600 (CST) Subject: [LLVMbugs] [Bug 5254] Clang should support __attribute__((__force_align_arg_pointer__)) In-Reply-To: References: Message-ID: <20100223051401.820F72A6C12D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5254 Charles Davis changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #3 from Charles Davis 2010-02-22 23:14:01 CST --- Well, I fixed clang, so now clang fully supports this attribute. This bug's about clang, so I'm resolving it. I reiterate, there's still the matter of llvm-gcc and dragonegg. GCC parses the attribute all right, but neither the llvm-gcc nor dragonegg backends actually emit the IR for this. I don't know enough about gcc to fix them, though, so I leave it to their respective maintainers. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Tue Feb 23 00:14:20 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Tue, 23 Feb 2010 00:14:20 -0600 (CST) Subject: [LLVMbugs] [Bug 6361] Clang complains about redeclaring function with a calling convention In-Reply-To: References: Message-ID: <20100223061420.BD3782A6C124@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6361 Charles Davis changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #2 from Charles Davis 2010-02-23 00:14:20 CST --- Fixed. Fix committed as r96895. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Tue Feb 23 01:32:23 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Tue, 23 Feb 2010 01:32:23 -0600 (CST) Subject: [LLVMbugs] [Bug 6401] New: llvm-ld should optimize for the target it is compiling for Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6401 Summary: llvm-ld should optimize for the target it is compiling for Product: tools Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P5 Component: llvm-ld AssignedTo: unassignedbugs at nondot.org ReportedBy: stein at ir.iit.edu CC: llvmbugs at cs.uiuc.edu Currently, if BitCode does not have a target set in it, llvm-ld -native will use the default target, and optimize for that, then compile for its target, which may be different. Instead, it would make much more sense if it only used the target it was compiling for, even if that is different from that specified in the BitCode. Though, if the BitCode target and llvm-ld target explicitly disagree, that should probably have a warning. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Tue Feb 23 02:51:49 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Tue, 23 Feb 2010 02:51:49 -0600 (CST) Subject: [LLVMbugs] [Bug 6402] New: Better explicit dependencies Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6402 Summary: Better explicit dependencies Product: Build scripts Version: trunk Platform: PC OS/Version: All Status: NEW Severity: enhancement Priority: P5 Component: cmake AssignedTo: unassignedbugs at nondot.org ReportedBy: dgregor at apple.com CC: llvmbugs at cs.uiuc.edu cmake/modules/LLVMLibDeps.cmake is really, really gross. Instead of dumping all of LLVM's dependencies here, we should explicitly write the dependencies for a library or tool within that library or tool. Then, we should generate llvm-config from that information directly (as it is encoded in CMake) rather than playing ames with Perl. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Tue Feb 23 02:55:26 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Tue, 23 Feb 2010 02:55:26 -0600 (CST) Subject: [LLVMbugs] [Bug 6403] New: Create LLVM-style build variants Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6403 Summary: Create LLVM-style build variants Product: Build scripts Version: trunk Platform: PC OS/Version: All Status: NEW Severity: enhancement Priority: P5 Component: cmake AssignedTo: unassignedbugs at nondot.org ReportedBy: dgregor at apple.com CC: llvmbugs at cs.uiuc.edu LLVM's Makefile-based build system generates variants Debug, Release, Release-Asserts, Debug-Asserts. CMake also defines some build variants, but they aren't the same as the LLVM ones. We should extend CMake's set of build variants to cover those variants used by LLVM, and to do the same things. IDE users would greatly benefit, since they can just select the appropriate variant from a drop-down, and we'd have consistency across the build systems. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Tue Feb 23 02:57:43 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Tue, 23 Feb 2010 02:57:43 -0600 (CST) Subject: [LLVMbugs] [Bug 6404] New: Provide llvm-config.cmake file for find_package(llvm ...) support Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6404 Summary: Provide llvm-config.cmake file for find_package(llvm ...) support Product: Build scripts Version: trunk Platform: All OS/Version: All Status: NEW Severity: enhancement Priority: P5 Component: cmake AssignedTo: unassignedbugs at nondot.org ReportedBy: rspencer at reidspencer.com CC: llvmbugs at cs.uiuc.edu If LLVM had an llvm-config.cmake file and put it in the proper place upon installation then other programs that use LLVM and also use CMake can find llvm very easily with a line like: find_package(llvm 1.6) LLVM should provide this file to make it easier for CMake users that want to include LLVM in their project. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Tue Feb 23 08:17:08 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Tue, 23 Feb 2010 08:17:08 -0600 (CST) Subject: [LLVMbugs] [Bug 6405] New: When built with --enable-expensive-checks , llvm/clang are sometime stuck in an endless loop Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6405 Summary: When built with --enable-expensive-checks , llvm/clang are sometime stuck in an endless loop Product: new-bugs Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: enhancement Priority: P5 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: yann at droneaud.fr CC: llvmbugs at cs.uiuc.edu llvm/clang is configured with following parameters ./configure CXXFLAGS="-O2 -g -march=native" CFLAGS="-O2 -g -march=native" --prefix=/opt/llvm/ --enable-expensive-checks --enable-debug-runtime --enable-debug-symbols --enable-targets=x86 llvm/clang is sometimes not able to finish to compile some source files, for example some test case (from make check). Even "simple" code like take hours to compile: PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND 20299 xxxxxxx 20 0 28672 14m 11m R 99 0.4 151:25.66 clang More than 2 hours and is still running ! -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Tue Feb 23 08:31:16 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Tue, 23 Feb 2010 08:31:16 -0600 (CST) Subject: [LLVMbugs] [Bug 6406] New: [GNU Extension] LLVM-GCC does not fully support __force_align_arg_pointer__ Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6406 Summary: [GNU Extension] LLVM-GCC does not fully support __force_align_arg_pointer__ Product: tools Version: trunk Platform: PC OS/Version: All Status: NEW Severity: enhancement Priority: P5 Component: llvm-gcc AssignedTo: unassignedbugs at nondot.org ReportedBy: cdavis at mymail.mines.edu CC: llvmbugs at cs.uiuc.edu This is an extension of PR5254. Instead of dealing with clang, however, this one deals with llvm-gcc. Unlike clang, which didn't support __attribute__((force_align_arg_pointer)) at all, llvm-gcc would successfully parse the attribute, but not do anything with it. The necessary backend support is now there. It just needs to be hooked up. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Tue Feb 23 08:33:19 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Tue, 23 Feb 2010 08:33:19 -0600 (CST) Subject: [LLVMbugs] [Bug 6407] New: [GNU Extension] DragonEgg does not support __force_align_arg_pointer__ Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6407 Summary: [GNU Extension] DragonEgg does not support __force_align_arg_pointer__ Product: dragonegg Version: unspecified Platform: PC OS/Version: All Status: NEW Severity: enhancement Priority: P5 Component: New Bugs AssignedTo: baldrick at free.fr ReportedBy: cdavis at mymail.mines.edu CC: llvmbugs at cs.uiuc.edu This is an extension of PR5254, only this bug deals with DragonEgg instead of clang. Like LLVM-GCC, the standard GCC frontend fully recognizes the force_align_arg_pointer attribute. However, DragonEgg (to the best of my knowledge) does not handle this attribute. The necessary backend support is there. It just needs to be hooked up. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Tue Feb 23 11:04:51 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Tue, 23 Feb 2010 11:04:51 -0600 (CST) Subject: [LLVMbugs] [Bug 6408] New: cdecl function returning stdcall function pointer not recognized Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6408 Summary: cdecl function returning stdcall function pointer not recognized Product: clang Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: enhancement Priority: P5 Component: -New Bugs AssignedTo: unassignedclangbugs at nondot.org ReportedBy: yann at droneaud.fr CC: llvmbugs at cs.uiuc.edu In wine, the following declaration from file dlls/winex11.drv/opengl.c cannot be compiled by clang: typedef long INT_PTR, *PINT_PTR; typedef INT_PTR (__attribute__((__stdcall__)) *PROC)(void); PROC __attribute__((__cdecl__)) X11DRV_wglGetProcAddress(LPCSTR lpszProc) { } Here is the error messages: opengl.c:1782:6: error: cdecl and stdcall attributes are not compatible PROC CDECL X11DRV_wglGetProcAddress(LPCSTR lpszProc) ^ In file included from opengl.c:39: In file included from ./x11drv.h:57: ../../include/windef.h:166:21: note: instantiated from: #define CDECL __cdecl ^ ../../include/windef.h:78:35: note: instantiated from: # define __cdecl __attribute__((__cdecl__)) ^ 1 diagnostic generated. So bug #5280 is perhaps not fixed. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Tue Feb 23 11:58:52 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Tue, 23 Feb 2010 11:58:52 -0600 (CST) Subject: [LLVMbugs] [Bug 6386] Incorrect passing of values cast to union In-Reply-To: References: Message-ID: <20100223175852.B7F902A6C124@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6386 Eli Friedman changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |sharparrow1 at yahoo.com Resolution| |FIXED --- Comment #1 from Eli Friedman 2010-02-23 11:58:52 CST --- Fixed in r96958. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Tue Feb 23 12:17:01 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Tue, 23 Feb 2010 12:17:01 -0600 (CST) Subject: [LLVMbugs] [Bug 6394] Optimizer swaps bitcast and getelementptr in an invalid way In-Reply-To: References: Message-ID: <20100223181701.918EE2A6C124@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6394 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID --- Comment #2 from Chris Lattner 2010-02-23 12:17:01 CST --- You need to specify a target data string in the .ll files in LLVM 2.6. Also, the malloc and free instructions have been removed from mainline. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Tue Feb 23 12:18:01 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Tue, 23 Feb 2010 12:18:01 -0600 (CST) Subject: [LLVMbugs] [Bug 6391] runtest (dejagnu) failed to find config.guess In-Reply-To: References: Message-ID: <20100223181801.D78C52A6C124@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6391 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |DUPLICATE --- Comment #2 from Chris Lattner 2010-02-23 12:18:01 CST --- *** This bug has been marked as a duplicate of bug 5217 *** -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Tue Feb 23 12:22:12 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Tue, 23 Feb 2010 12:22:12 -0600 (CST) Subject: [LLVMbugs] [Bug 6400] clang codgen aborts producing an invalid store In-Reply-To: References: Message-ID: <20100223182212.6B02B2A6C124@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6400 Eli Friedman changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |sharparrow1 at yahoo.com Resolution| |FIXED --- Comment #3 from Eli Friedman 2010-02-23 12:22:12 CST --- Fixed in r96961 (although I'm wondering how you managed to come up with this testcase). -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Tue Feb 23 14:56:03 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Tue, 23 Feb 2010 14:56:03 -0600 (CST) Subject: [LLVMbugs] [Bug 6409] New: llvm/clang built with --enable-expensive-checks failed to build wine sources with stl_heap error Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6409 Summary: llvm/clang built with --enable-expensive-checks failed to build wine sources with stl_heap error Product: new-bugs Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: enhancement Priority: P5 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: yann at droneaud.fr CC: llvmbugs at cs.uiuc.edu Here is the error message from a wine build (dlls/comctl32/trackbar.c): clang -c -I. -I. -I../../include -I../../include -D__WINESRC__ -D_COMCTL32_ -D_REENTRANT -fPIC -Wall -pipe -Wpointer-arith -g -O2 -o trackbar.o trackbar.c /usr/lib/gcc/i586-manbo-linux-gnu/4.3.2/../../../../include/c++/4.3.2/bits/stl_heap.h:356: error: elements in iterator range [__first, __last) do not form a heap with respect to the predicate __comp. Objects involved in the operation: iterator "__first" @ 0x0xff8e2400 { type = N11__gnu_debug14_Safe_iteratorIN9__gnu_cxx17__normal_iteratorIPPN4llvm5SUnitENSt6__norm6vectorIS5_SaIS5_EEEEENSt7__debug6vectorIS5_S9_EEEE (mutable iterator); state = dereferenceable (start-of-sequence); references sequence with type `NSt7__debug6vectorIPN4llvm5SUnitESaIS3_EEE' @ 0x0xff8e2400 } iterator "__last" @ 0x0xff8e23ec { type = N11__gnu_debug14_Safe_iteratorIN9__gnu_cxx17__normal_iteratorIPPN4llvm5SUnitENSt6__norm6vectorIS5_SaIS5_EEEEENSt7__debug6vectorIS5_S9_EEEE (mutable iterator); state = past-the-end; references sequence with type `NSt7__debug6vectorIPN4llvm5SUnitESaIS3_EEE' @ 0x0xff8e23ec } 0 clang 0x0918b8ca 1 clang 0x0918d9ca 2 0xffffe400 __kernel_sigreturn + 0 Stack dump: 0. Program arguments: /opt/llvm/bin/clang -cc1 -triple i386-pc-linux-gnu -S -disable-free -main-file-name trackbar.c -pic-level 2 -mdisable-fp-elim -mconstructor-aliases -target-cpu pentium4 -g -resource-dir /opt/llvm/lib/clang/1.1 -D__WINESRC__ -D_COMCTL32_ -D_REENTRANT -I. -I. -I../../include -I../../include -O2 -Wall -Wpointer-arith -fmessage-length 156 -fgnu-runtime -fdiagnostics-show-option -fcolor-diagnostics -o /home/XXXXXXXX/tmp/cc-jYZwaB.s -x c trackbar.c 1. parser at end of file 2. Code generation 3. Running pass 'X86 DAG->DAG Instruction Selection' on function '@TRACKBAR_DrawOneTic' clang: error: compiler command failed due to signal 6 (use -v to see invocation) -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Tue Feb 23 16:05:24 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Tue, 23 Feb 2010 16:05:24 -0600 (CST) Subject: [LLVMbugs] [Bug 5621] Clang doesn't know about __attribute__ weakref() In-Reply-To: References: Message-ID: <20100223220524.533632A6C131@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5621 Rafael ?vila de Esp?ndola changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #6 from Rafael ?vila de Esp?ndola 2010-02-23 16:05:23 CST --- This should be fixed in 96992. The support is not complete (we produce symbols for it), but should be as good as llvm-gcc now. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Tue Feb 23 16:45:04 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Tue, 23 Feb 2010 16:45:04 -0600 (CST) Subject: [LLVMbugs] [Bug 6363] Stack overflow somewhere in coalescer In-Reply-To: References: Message-ID: <20100223224504.F227F2A6C12C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6363 Jakob Stoklund Olesen changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #5 from Jakob Stoklund Olesen 2010-02-23 16:45:04 CST --- Fixed here: http://llvm.org/viewvc/llvm-project?rev=96994&view=rev -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Tue Feb 23 16:45:57 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Tue, 23 Feb 2010 16:45:57 -0600 (CST) Subject: [LLVMbugs] [Bug 6372] Unrecognized copy instruction!; UNREACHABLE executed at LiveIntervalAnalysis.cpp:773! In-Reply-To: References: Message-ID: <20100223224557.CE0762A6C12C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6372 Jakob Stoklund Olesen changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #3 from Jakob Stoklund Olesen 2010-02-23 16:45:57 CST --- Fixed here: http://llvm.org/viewvc/llvm-project?rev=96995&view=rev -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Tue Feb 23 16:47:38 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Tue, 23 Feb 2010 16:47:38 -0600 (CST) Subject: [LLVMbugs] [Bug 6405] When built with --enable-expensive-checks , llvm/clang are sometime stuck in an endless loop In-Reply-To: References: Message-ID: <20100223224738.9012B2A6C12F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6405 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #8 from Chris Lattner 2010-02-23 16:47:38 CST --- thanks for verifying. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Tue Feb 23 17:27:08 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Tue, 23 Feb 2010 17:27:08 -0600 (CST) Subject: [LLVMbugs] =?utf-8?b?W0J1ZyA2NDEwXSBOZXc6IGVycm9yOiAgcHRyVHlwZcOi?= =?utf-8?q?_is_not_a_member_of_mvm_=3A=3AMvmModule?= Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6410 Summary: error: ptrType? is not a member of mvm::MvmModule Product: Projects Version: unspecified Platform: HP OS/Version: Linux Status: NEW Severity: blocker Priority: P5 Component: Java AssignedTo: unassignedbugs at nondot.org ReportedBy: phil at xsmail.com CC: llvmbugs at cs.uiuc.edu Compiling the VMKIT as directed on the website. (Using the latest LLVM and VMKIT (revision 97000) source on the svn trunks). The following compile error occurs: llvm[3]: Compiling PNetString.cpp for Debug build PNetString.cpp: In static member function ?static llvm::GlobalVariable* n3::CLIString::llvmVar(n3::CLIString*)?: PNetString.cpp:48: error: ?ptrType? is not a member of ?mvm::MvmModule? Line.48 is: const Type* pty = mvm::MvmModule::ptrType; Looking at the ./include/mvm/JIT.h in revision 97000, the ptrType is part of class BaseIntrinsics. Looking at previous svn update revision 96585, the ptrType "was" part of class MvmModule. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Tue Feb 23 18:40:49 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Tue, 23 Feb 2010 18:40:49 -0600 (CST) Subject: [LLVMbugs] [Bug 6374] Assertion failed: (lr && "Cannot find live range") In-Reply-To: References: Message-ID: <20100224004049.95D2A2A6C12D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6374 Jakob Stoklund Olesen changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED --- Comment #2 from Jakob Stoklund Olesen 2010-02-23 18:40:49 CST --- Fixed here: http://llvm.org/viewvc/llvm-project?rev=97006&view=rev -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Tue Feb 23 22:28:54 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Tue, 23 Feb 2010 22:28:54 -0600 (CST) Subject: [LLVMbugs] [Bug 6370] dag scheduler is nondeterministic In-Reply-To: References: Message-ID: <20100224042854.4A1B52A6C12E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6370 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID --- Comment #3 from Chris Lattner 2010-02-23 22:28:53 CST --- This turned out to maybe not be a schedule problem. The issue is that the new isel is not using selectnodeto yet, it is using getNode + replaceUses. The key difference here is that the resultant nodes have different ordering in the allnodes array, which is changing the scheduling order. I'm attaching a patch to make LatencyPriorityQueue work more like the other one, but I don't know if it's useful at all. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Wed Feb 24 00:57:21 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Wed, 24 Feb 2010 00:57:21 -0600 (CST) Subject: [LLVMbugs] =?utf-8?q?=5BBug_6410=5D_error=3A__ptrType=C3=A2_is_no?= =?utf-8?q?t_a_member_of_mvm_=3A=3AMvmModule?= In-Reply-To: References: Message-ID: <20100224065721.951522A6C12D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6410 varth changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from varth 2010-02-24 00:57:21 CST --- Fixed in r97206. Thanks for reporting the error. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Wed Feb 24 02:37:51 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Wed, 24 Feb 2010 02:37:51 -0600 (CST) Subject: [LLVMbugs] [Bug 6409] llvm/clang built with --enable-expensive-checks failed to build wine sources with stl_heap error In-Reply-To: References: Message-ID: <20100224083751.562132A6C12E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6409 Duncan Sands changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |DUPLICATE --- Comment #4 from Duncan Sands 2010-02-24 02:37:51 CST --- *** This bug has been marked as a duplicate of bug 3387 *** -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Wed Feb 24 03:03:57 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Wed, 24 Feb 2010 03:03:57 -0600 (CST) Subject: [LLVMbugs] [Bug 6373] ICE cannot be evaluated!; UNREACHABLE executed at Expr.cpp:1916! In-Reply-To: References: Message-ID: <20100224090357.11E282A6C12D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6373 John McCall changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #2 from John McCall 2010-02-24 03:03:56 CST --- Fixed in r97037. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Wed Feb 24 03:47:09 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Wed, 24 Feb 2010 03:47:09 -0600 (CST) Subject: [LLVMbugs] [Bug 6411] New: clang++ crashes Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6411 Summary: clang++ crashes Product: clang Version: unspecified Platform: PC OS/Version: FreeBSD Status: NEW Severity: normal Priority: P5 Component: C++ AssignedTo: unassignedclangbugs at nondot.org ReportedBy: rdivacky at freebsd.org CC: llvmbugs at cs.uiuc.edu, dgregor at apple.com Created an attachment (id=4300) --> (http://llvm.org/bugs/attachment.cgi?id=4300) test case pes delta$ clang++ -c 000.cpp 000.cpp:78:1: warning: control reaches end of non-void function [-Wreturn-type] } ^ 000.cpp:145:5: warning: control reaches end of non-void function [-Wreturn-type] } ^ Stack dump: 0. Program arguments: /usr/local/bin/clang -cc1 -triple x86_64-unknown-freebsd8.0 -S -disable-free -main-file-name 000.cpp -mrelocation-model static -mdisable-fp-elim -mconstructor-aliases -munwind-tables -target-cpu x86-64 -resource-dir /usr/local/lib/clang/1.1 -fmessage-length 116 -fexceptions -fgnu-runtime -fdiagnostics-show-option -fcolor-diagnostics -o /tmp/cc-TVCg7X.s -x c++ 000.cpp 1. FoldingSet.cpp:178:1: current parser token 'FoldingSetImpl' 2. FoldingSet.cpp:171:17: LLVM IR generation of declaration 'llvm::FoldingSetImpl::FoldingSetImpl' 3. FoldingSet.cpp:171:17: Generating code for declaration 'llvm::FoldingSetImpl::FoldingSetImpl' clang: error: compiler command failed due to signal 10 (use -v to see invocation) this is on a reduced test case from FoldingSet.cpp from llvm -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Wed Feb 24 04:48:35 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Wed, 24 Feb 2010 04:48:35 -0600 (CST) Subject: [LLVMbugs] [Bug 6412] New: AltiVec-style vector literals Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6412 Summary: AltiVec-style vector literals Product: clang Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P5 Component: parser AssignedTo: unassignedclangbugs at nondot.org ReportedBy: anton.lokhmotov at gmail.com CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4301) --> (http://llvm.org/bugs/attachment.cgi?id=4301) Test case with exact diagnostics When setting LanguageOptions.AltiVec=1, Clang correctly recognises AltiVec vectors initialised with AltiVec-style vector literals: 6: vector int altivec0 = (vector int) (1, 2, 3, 4); // passes [] and, if given 1: typedef int int4 __attribute__((ext_vector_type(4))); even OpenCL-style vectors: 11: int4 opencl0 = (int4) (1, 2, 3, 4); // passes [] However, Clang fails to recognise splat literals (http://developer.apple.com/hardwaredrivers/ve/tutorial.html), e.g. 7: vector int altivec1 = (vector int) (1); // fails [7:40: current parser token ';'] 12: int4 opencl1 = (int4) (1); // fails [12:27: current parser token ';'] Surprisingly, a slight variation with no parenthesis around the scalar literal still fails for AltiVec vectors but works for OpenCL-style vectors: 8: vector int altivec2 = (vector int) 1; // fails [8:38: current parser token ';'] 13: int4 opencl2 = (int4) 1; // passes [splat: ] -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Wed Feb 24 08:23:38 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Wed, 24 Feb 2010 08:23:38 -0600 (CST) Subject: [LLVMbugs] [Bug 6413] New: crash with -fsyntax-only multiple virtual bases Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6413 Summary: crash with -fsyntax-only multiple virtual bases Product: clang Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P5 Component: C++ AssignedTo: unassignedclangbugs at nondot.org ReportedBy: vr086731 at studenti.univr.it CC: llvmbugs at cs.uiuc.edu, dgregor at apple.com template class Base_A { }; class Base_B { }; template class Derived : public virtual Base_A , public virtual Base_B { }; llvm_Debug/bin$ ./clang++ -fsyntax-only bug.cc Stack dump: 0. Program arguments: llvm_Debug/bin/clang -cc1 -triple i386-pc-linux-gnu -fsyntax-only -disable-free -main-file-name bug.cc -mrelocation-model static -mdisable-fp-elim -target-cpu pentium4 -resource-dir llvm_Debug/lib/clang/1.1 -fmessage-length 145 -fexceptions -fgnu-runtime -fdiagnostics-show-option -fcolor-diagnostics -x c++ bug.cc 1. bug.cc:9:1: current parser token '{' 2. bug.cc:6:1: parsing struct/union/class body 'Derived' clang: error: compiler command failed due to signal 11 (use -v to see invocation) Program received signal SIGSEGV, Segmentation fault. 0x082be031 in llvm::PointerIntPair >::getPointer (this=0xc) at llvm/include/llvm/ADT/PointerIntPair.h:69 (gdb) bt #0 0x082be031 in llvm::PointerIntPair >::getPointer (this=0xc) at llvm/include/llvm/ADT/PointerIntPair.h:69 #1 0x082bbe44 in clang::TagType::getDecl (this=0x0) at llvm/tools/clang/include/clang/AST/Type.h:2105 #2 0x082bbe8b in clang::RecordType::getDecl (this=0x0) at llvm/tools/clang/include/clang/AST/Type.h:2134 #3 0x0852db49 in clang::CXXRecordDecl::setBases (this=0x897d968, Bases=0xbfffdb30, NumBases=2) at llvm/tools/clang/lib/AST/DeclCXX.cpp:147 (gdb) f 3 #3 0x0852db49 in clang::CXXRecordDecl::setBases (this=0x897d968, Bases=0xbfffdb30, NumBases=2) at llvm/tools/clang/lib/AST/DeclCXX.cpp:147 (gdb) l 145 QualType QT = UniqueVbases[i]->getType(); 146 CXXRecordDecl *VBaseClassDecl 147 = cast(QT->getAs()->getDecl()); Look at frame 2: (this=0x0). Something is going wrong in that QT->getAs() at line 147. Stefano Soffia -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Wed Feb 24 10:06:57 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Wed, 24 Feb 2010 10:06:57 -0600 (CST) Subject: [LLVMbugs] [Bug 6414] New: Nondeterministic invalid optimization in llvm-ld Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6414 Summary: Nondeterministic invalid optimization in llvm-ld Product: tools Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: enhancement Priority: P5 Component: llvm-ld AssignedTo: unassignedbugs at nondot.org ReportedBy: stein at ir.iit.edu CC: llvmbugs at cs.uiuc.edu in.bc gets invalidly optimized when run through llvm-ld -native -o=a in.bc It nondeterministically becomes either bad.bc or good.bc. good.bc correctly prints "8". bad.bc incorrectly prints "-2147483648". Using -disable-opt makes it always work correctly. This occurs in top-of-tree. The input program for in.bc: --------------- void print_int(int); int(*)() f() { int g() { return 8; } return g; } void main() { print_int(f()()); } --------------- BitCode files attached. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Wed Feb 24 13:57:17 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Wed, 24 Feb 2010 13:57:17 -0600 (CST) Subject: [LLVMbugs] [Bug 6414] Nondeterministic invalid optimization in llvm-ld In-Reply-To: References: Message-ID: <20100224195717.61BEB2A6C130@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6414 Bill Wendling changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |wendling at apple.com Resolution| |INVALID --- Comment #1 from Bill Wendling 2010-02-24 13:57:17 CST --- The example doesn't build. Nevertheless, it appears to be invalid. From http://gcc.gnu.org/onlinedocs/gcc/Nested-Functions.html : "If you try to call the nested function through its address after the containing function has exited, all hell will break loose. If you try to call it after a containing scope level has exited, and if it refers to some of the variables that are no longer in scope, you may be lucky, but it's not wise to take the risk. If, however, the nested function does not refer to anything that has gone out of scope, you should be safe." The "should be safe" doesn't guarantee that it will act in the way you expect. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Wed Feb 24 14:32:39 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Wed, 24 Feb 2010 14:32:39 -0600 (CST) Subject: [LLVMbugs] [Bug 6411] clang++ crashes with constructor-alias optimization enabled In-Reply-To: References: Message-ID: <20100224203239.A37D52A6C12E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6411 John McCall changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #2 from John McCall 2010-02-24 14:32:39 CST --- Whoops, introduced a reference invalidation bug. Fixed in r97055, sorry. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Wed Feb 24 14:41:05 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Wed, 24 Feb 2010 14:41:05 -0600 (CST) Subject: [LLVMbugs] [Bug 6415] New: clang miscompile with -static and -O2 Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6415 Summary: clang miscompile with -static and -O2 Product: clang Version: trunk Platform: Other OS/Version: FreeBSD Status: NEW Severity: enhancement Priority: P5 Component: -New Bugs AssignedTo: unassignedclangbugs at nondot.org ReportedBy: hinokind at gmail.com CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4303) --> (http://llvm.org/bugs/attachment.cgi?id=4303) testcase $ cat miscompile.c #include char * getenv (char const *name) { return "42"; } int main() { getenv("ABCDE"); } $ clang miscompile.c -o bug && ./bug no output $ clang miscompile.c -O3 -o bug && ./bug no output $ clang miscompile.c -static -o bug && ./bug bug: (malloc) Unsupported character in malloc options: '' bug: (malloc) Unsupported character in malloc options: 'E' $ clang miscompile.c -O2 -static -o bug && ./bug bug: (malloc) Unsupported character in malloc options: '' $ clang --version clang version 1.1 (trunk 97041) Target: x86_64-unknown-freebsd8.0 Thread model: posix This is reproducable on multiple (FreeBSD) machines. GCC behaves somewhat similar, though what -O{0-3} does depends on gcc version. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Wed Feb 24 15:20:05 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Wed, 24 Feb 2010 15:20:05 -0600 (CST) Subject: [LLVMbugs] [Bug 6415] clang miscompile with -static and -O2 In-Reply-To: References: Message-ID: <20100224212005.3B5102A6C131@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6415 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID --- Comment #1 from Chris Lattner 2010-02-24 15:20:04 CST --- I really have no idea about this one, however if you redefine a standard function, you have to pass -fno-builtin. The fact that GCC is doing different things at different optimization levels is a good indicator that you're relying on undefined behavior. Clang doesn't currently support -fno-builtin but that is tracked by another PR. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Wed Feb 24 15:49:03 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Wed, 24 Feb 2010 15:49:03 -0600 (CST) Subject: [LLVMbugs] [Bug 6416] New: AutoRegen.sh should clarify what is meant by "LLVM objects path" Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6416 Summary: AutoRegen.sh should clarify what is meant by "LLVM objects path" Product: Build scripts Version: trunk Platform: All OS/Version: All Status: NEW Severity: enhancement Priority: P5 Component: autoconf AssignedTo: unassignedbugs at nondot.org ReportedBy: Trevor.W.Harmon at nasa.gov CC: llvmbugs at cs.uiuc.edu When running the AutoRegen.sh script in projects/samples/autoconf, it may ask for the "full path to LLVM objects". It is not quite clear what this means. When AutoRegen.sh prompts for the path, there should probably be additional text that says something like, "The LLVM objects path refers to the location of the LLVM object tree. This is the top-level directory in which LLVM places object files during compilation. (It is not the install path.)" -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Wed Feb 24 16:03:40 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Wed, 24 Feb 2010 16:03:40 -0600 (CST) Subject: [LLVMbugs] [Bug 6417] New: inefficient code for inserting i8 into i32 Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6417 Summary: inefficient code for inserting i8 into i32 Product: new-bugs Version: 2.6 Platform: PC OS/Version: Windows NT Status: NEW Severity: enhancement Priority: P5 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: pete.cooper at gmail.com CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4304) --> (http://llvm.org/bugs/attachment.cgi?id=4304) original IR I've been looking into the IR generated for writing a byte of a structure. The optimizer reduces it to the code you would use for writing to a bitfield, ie, masked and with an add for the insertion, but wouldn't it be better to use a byte move or byte store on x86 or a shuffle on other targets? I've attached the original IR as well as a modified version to use insertelement as i think that could generate better code. Unfortunately, the asm produced is horrendous with my change. I understand there are code generator selection and possible LegalizeDag issues giving me bad asm, but is there any reason why i shouldn't implement the optimisation for inserts and just add the code generators we need too? Note, i've look at 2109 and i think this is similar to that, but its for doubles, not a vector that fits in a normal x86 register. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Wed Feb 24 16:06:46 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Wed, 24 Feb 2010 16:06:46 -0600 (CST) Subject: [LLVMbugs] [Bug 1894] Landing pad label misplaced In-Reply-To: References: Message-ID: <20100224220646.E86972A6C131@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1894 Dan Gohman changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |gohman at apple.com Resolution| |FIXED --- Comment #1 from Dan Gohman 2010-02-24 16:06:46 CST --- I committed the patch, plus several fixes to CodeGen to fix lowering of vectors with element padding, in r97064. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Wed Feb 24 16:07:14 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Wed, 24 Feb 2010 16:07:14 -0600 (CST) Subject: [LLVMbugs] [Bug 1894] Landing pad label misplaced In-Reply-To: References: Message-ID: <20100224220714.D13AC2A6C131@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1894 Dan Gohman changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|FIXED | --- Comment #2 from Dan Gohman 2010-02-24 16:07:14 CST --- Oops, wrong bug. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Wed Feb 24 16:07:56 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Wed, 24 Feb 2010 16:07:56 -0600 (CST) Subject: [LLVMbugs] [Bug 1784] vectors of i1 and vectors x86 long double don't work In-Reply-To: References: Message-ID: <20100224220756.E60252A6C138@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1784 Dan Gohman changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |gohman at apple.com Resolution| |FIXED --- Comment #10 from Dan Gohman 2010-02-24 16:07:56 CST --- I committed the patch, plus several fixes to CodeGen to fix lowering of vectors with element padding, in r97064. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Wed Feb 24 16:21:53 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Wed, 24 Feb 2010 16:21:53 -0600 (CST) Subject: [LLVMbugs] [Bug 6418] New: Narrowing conversion missed by -Wconversion in template defined in system header Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6418 Summary: Narrowing conversion missed by -Wconversion in template defined in system header Product: clang Version: unspecified Platform: PC OS/Version: All Status: NEW Severity: minor Priority: P5 Component: C++ AssignedTo: unassignedclangbugs at nondot.org ReportedBy: jyasskin at google.com CC: llvmbugs at cs.uiuc.edu, dgregor at apple.com The following function narrows from int64_t to int, losing data, but -Wconversion doesn't warn because the template was defined in a system header. Clang should be paying attention to where the template was instantiated instead. $ cat test.cc #include #include #include int64_t sum(const std::vector& values) { return std::accumulate(values.begin(), values.end(), 0); } $ clang++ -c test.cc -Wconversion $ I expect a warning like: In file included from test.cc:2: In file included from /usr/include/c++/4.0.0/numeric:68: /usr/include/c++/4.0.0/bits/stl_numeric.h:89:11: warning: implicit cast loses integer precision: 'long long' to 'int' [-Wshorten-64-to-32] __init = __init + *__first; ^~~~~~~~~~~~~~~~~ test.cc:6:10: note: in instantiation of function template specialization 'std::accumulate > >, int>' requested here return std::accumulate(values.begin(), values.end(), 0); ^ Which I copied out of the output of $ clang++ -c test.cc -Wconversion -Wsystem-headers -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Wed Feb 24 16:34:14 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Wed, 24 Feb 2010 16:34:14 -0600 (CST) Subject: [LLVMbugs] [Bug 5954] TableGen fails to link because of __progname and environ needed by DSO In-Reply-To: References: Message-ID: <20100224223414.B85E52A6C131@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5954 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #7 from Chris Lattner 2010-02-24 16:34:14 CST --- Applied here, thanks! http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20100222/096793.html -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Wed Feb 24 16:44:30 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Wed, 24 Feb 2010 16:44:30 -0600 (CST) Subject: [LLVMbugs] [Bug 6337] SelectionDAG.cpp has opportunity for code refactoring In-Reply-To: References: Message-ID: <20100224224430.4B2AD2A6C136@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6337 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #4 from Chris Lattner 2010-02-24 16:44:30 CST --- Looks great, applied here, thanks! http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20100222/096795.html -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Wed Feb 24 16:48:22 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Wed, 24 Feb 2010 16:48:22 -0600 (CST) Subject: [LLVMbugs] [Bug 6417] inefficient code for inserting i8 into i32 In-Reply-To: References: Message-ID: <20100224224822.BF3FF2A6C137@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6417 Dan Gohman changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |gohman at apple.com Resolution| |INVALID --- Comment #3 from Dan Gohman 2010-02-24 16:48:22 CST --- The IR has a 4-byte store; a single byte store wouldn't produce the same effect. For the vector code, the -disable-mmx option is highly recommended. Beyond that, theoretically LLVM could convert that vector code back to scalar code, but that's not very interesting unless you plan to write a lot of code like that. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Wed Feb 24 19:38:57 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Wed, 24 Feb 2010 19:38:57 -0600 (CST) Subject: [LLVMbugs] [Bug 6398] clang++ segfaults when parsing c++ In-Reply-To: References: Message-ID: <20100225013858.00ADD2A6C137@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6398 John McCall changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #4 from John McCall 2010-02-24 19:38:57 CST --- We weren't skipping the ignored-object-argument conversion slot when diagnosing bad conversions. Fixed in r97090. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Wed Feb 24 19:43:53 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Wed, 24 Feb 2010 19:43:53 -0600 (CST) Subject: [LLVMbugs] [Bug 6113] Clang fails to accept a redeclaration of a class after a using declaration In-Reply-To: References: Message-ID: <20100225014353.4C6D82A6C137@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6113 John McCall changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution| |INVALID --- Comment #8 from John McCall 2010-02-24 19:43:52 CST --- Well, seeing as I still believe this to be contrary to the standard, and seeing as we haven't seen any compelling compatibility reasons to support it despite being non-standard, I'm going to re-resolve this as invalid. Feel free to re-open if anyone wants to argue about this some more. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Wed Feb 24 19:58:38 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Wed, 24 Feb 2010 19:58:38 -0600 (CST) Subject: [LLVMbugs] [Bug 6380] clang crashes during compilation of boost::optional In-Reply-To: References: Message-ID: <20100225015838.8734F2A6C137@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6380 Douglas Gregor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED --- Comment #7 from Douglas Gregor 2010-02-24 19:58:38 CST --- Fixed here: http://lists.cs.uiuc.edu/pipermail/cfe-commits/Week-of-Mon-20100222/027889.html -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Wed Feb 24 21:31:32 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Wed, 24 Feb 2010 21:31:32 -0600 (CST) Subject: [LLVMbugs] [Bug 6347] [X86] : wrong code generated for shufflevector In-Reply-To: References: Message-ID: <20100225033132.6C98C2A6C136@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6347 Junjie Gu changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Junjie Gu 2010-02-24 21:31:32 CST --- r96621 fixed this one. Thanks -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 02:10:29 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 02:10:29 -0600 (CST) Subject: [LLVMbugs] [Bug 6414] Nondeterministic invalid optimization in llvm-ld In-Reply-To: References: Message-ID: <20100225081029.66DD52A6C12D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6414 Sterling Stuart Stein changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|INVALID | --- Comment #5 from Sterling Stuart Stein 2010-02-25 02:10:29 CST --- Sorry, I thought I attached it. Now, the 3 BitCode files should be attached. Sorry, my description was misleading. I just tried to make a quick translation into a C-like language for legibility. Yes, g is a separate function, so it doesn't have to be in f in any sense. (The net effect of this is that it has internal linkage instead of external.) In the BitCode, you can see that g is in fact a plain function, and f is just return g. So, this by itself shouldn't be a problem. Now that you can see it, is it valid BitCode? -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 02:42:58 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 02:42:58 -0600 (CST) Subject: [LLVMbugs] [Bug 5278] Crash in BitcodeReader::ParseMetadataAttachment() In-Reply-To: References: Message-ID: <20100225084258.A4C982A6C131@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5278 Nick Lewycky changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #7 from Nick Lewycky 2010-02-25 02:42:57 CST --- Fixed in r97132: http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20100222/096821.html -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 02:57:10 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 02:57:10 -0600 (CST) Subject: [LLVMbugs] [Bug 6421] New: clang++ segfaults when parsing c++ Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6421 Summary: clang++ segfaults when parsing c++ Product: clang Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P5 Component: C++ AssignedTo: unassignedclangbugs at nondot.org ReportedBy: chris at bubblescope.net CC: llvmbugs at cs.uiuc.edu, dgregor at apple.com This bug is closely related to http://llvm.org/bugs/show_bug.cgi?id=6398 . The following code segfaults the compiler on 64-bit linux: class T; class QGenericArgument { static void bob(); static void bob(int* sender); static void bob(QGenericArgument q); // * void disconnect( ) { T* t; bob(t); } }; Previously the code segfaulted even without the line marked *, that was fixed in 6398, but adding this new line reintroduces the segfault. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 04:02:04 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 04:02:04 -0600 (CST) Subject: [LLVMbugs] [Bug 6414] Nondeterministic invalid optimization in llvm-ld In-Reply-To: References: Message-ID: <20100225100204.A46432A6C12F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6414 Duncan Sands changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution| |DUPLICATE --- Comment #6 from Duncan Sands 2010-02-25 04:02:04 CST --- You need to specify the target in the bitcode, otherwise llvm-ld optimizes for some invented target (I forget which, maybe sparc?). *** This bug has been marked as a duplicate of bug 6401 *** -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 04:47:19 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 04:47:19 -0600 (CST) Subject: [LLVMbugs] [Bug 6421] clang++ segfaults when parsing c++ In-Reply-To: References: Message-ID: <20100225104719.2C87F2A6C12D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6421 John McCall changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |rjmccall at apple.com Resolution| |FIXED --- Comment #1 from John McCall 2010-02-25 04:47:18 CST --- Argh. Sorry about that. Very closely related indeed; fixed in r97135. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 05:02:15 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 05:02:15 -0600 (CST) Subject: [LLVMbugs] [Bug 1784] vectors of i1 and vectors x86 long double don't work In-Reply-To: References: Message-ID: <20100225110215.ED2692A6C12E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1784 Duncan Sands changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|FIXED | --- Comment #11 from Duncan Sands 2010-02-25 05:02:15 CST --- There are still several issues, see this email: http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20100222/096825.html -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 09:00:21 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 09:00:21 -0600 (CST) Subject: [LLVMbugs] [Bug 6421] clang++ segfaults when parsing c++ In-Reply-To: References: Message-ID: <20100225150021.837432A6C124@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6421 Christopher Jefferson changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|FIXED | --- Comment #2 from Christopher Jefferson 2010-02-25 09:00:21 CST --- Attaching this to same bug, to avoid opening too many bugs. class T; class QGenericArgument { template void foo(T t) { } void disconnect() { T* t; bob(t); } }; -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 10:14:20 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 10:14:20 -0600 (CST) Subject: [LLVMbugs] [Bug 6414] Nondeterministic invalid optimization in llvm-ld In-Reply-To: References: Message-ID: <20100225161420.AE2E92A6C12C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6414 Sterling Stuart Stein changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|DUPLICATE | --- Comment #7 from Sterling Stuart Stein 2010-02-25 10:14:20 CST --- I'm on Linux AMD64. So, I tried adding target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128" target triple = "x86_64-unknown-linux-gnu" to the top of the in BitCode. (Is there an easy way to check which is the correct target for what machine I'm on?) The bug still happens in the same way. So, I don't think it's the same as 6401. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 11:38:13 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 11:38:13 -0600 (CST) Subject: [LLVMbugs] [Bug 6345] [GNU Extension] Clang differs from GCC on anonymous structs In-Reply-To: References: Message-ID: <20100225173813.AF5AC2A6C12F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6345 Charles Davis changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |WONTFIX --- Comment #8 from Charles Davis 2010-02-25 11:38:13 CST --- Patch committed, closing WONTFIX. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 11:57:43 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 11:57:43 -0600 (CST) Subject: [LLVMbugs] [Bug 1894] Landing pad label misplaced In-Reply-To: References: Message-ID: <20100225175743.DB4802A6C124@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=1894 varth changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution| |FIXED --- Comment #4 from varth 2010-02-25 11:57:43 CST --- No, it looks like it is fixed with latest revision. I'm closing the bug. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 11:59:22 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 11:59:22 -0600 (CST) Subject: [LLVMbugs] [Bug 6422] New: globalopt crashes in OptimizeGlobalAddressOfMalloc Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6422 Summary: globalopt crashes in OptimizeGlobalAddressOfMalloc Product: new-bugs Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P5 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: kevin.fan at gmail.com CC: llvmbugs at cs.uiuc.edu opt -globalopt short.bc causes a core dump. The attached test case was reduced by bugpoint from 300.twolf, and further reduced by hand. The thing that might be tripping up globalopt is the fact that the argument to malloc is of type i32 rather than i64, even though the target triple is a 64-bit machine. I'm not sure why my llvm-gcc is generating that, but I imagine it shouldn't cause globalopt to crash. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 12:12:06 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 12:12:06 -0600 (CST) Subject: [LLVMbugs] [Bug 6421] clang++ segfaults when parsing c++ In-Reply-To: References: Message-ID: <20100225181206.BCF432A6C12F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6421 Douglas Gregor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution| |FIXED --- Comment #3 from Douglas Gregor 2010-02-25 12:12:06 CST --- Fixed in r97152. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 12:25:31 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 12:25:31 -0600 (CST) Subject: [LLVMbugs] [Bug 5794] not getting trip count of nested loop In-Reply-To: References: Message-ID: <20100225182531.F00142A6C12D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5794 Dan Gohman changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Dan Gohman 2010-02-25 12:25:31 CST --- Fixed in r97126. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 13:22:10 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 13:22:10 -0600 (CST) Subject: [LLVMbugs] [Bug 6423] New: Improve 'missing ;' error Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6423 Summary: Improve 'missing ;' error Product: clang Version: unspecified Platform: PC OS/Version: All Status: NEW Severity: enhancement Priority: P5 Component: parser AssignedTo: unassignedclangbugs at nondot.org ReportedBy: clattner at apple.com CC: llvmbugs at cs.uiuc.edu This should emit an error telling that we need a ; after the struct: struct foo { } typedef int x; instead we get: t.c:6:9: error: cannot combine with previous 'struct' declaration specifier typedef int x; ^ which is obviously dumb. Bad clang! -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 13:31:48 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 13:31:48 -0600 (CST) Subject: [LLVMbugs] [Bug 6356] [CheckSignCompare crash] Violated assertion "unsigned range includes negative?" In-Reply-To: References: Message-ID: <20100225193148.D53402A6C12E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6356 John McCall changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from John McCall 2010-02-25 13:31:48 CST --- This was fixed in r96970. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 14:01:49 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 14:01:49 -0600 (CST) Subject: [LLVMbugs] [Bug 5754] LegalizeVectorTypes asserts on Vector SIGN_EXTEND_INREG In-Reply-To: References: Message-ID: <20100225200149.47B002A6C12C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5754 Micah Villmow changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution| |FIXED --- Comment #9 from Micah Villmow 2010-02-25 14:01:48 CST --- This was fixed sometime between my last comment and 2323.8. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 14:32:00 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 14:32:00 -0600 (CST) Subject: [LLVMbugs] [Bug 6338] LegalizeDag:ExpandVectorBuildThroughStack incorrectly compares value types causing getTruncStore to assert. In-Reply-To: References: Message-ID: <20100225203200.90B202A6C12C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6338 Dan Gohman changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |gohman at apple.com Resolution| |FIXED --- Comment #2 from Dan Gohman 2010-02-25 14:32:00 CST --- (In reply to comment #1) > Created an attachment (id=4313) --> (http://llvm.org/bugs/attachment.cgi?id=4313) [details] > patch file for bug This patch looks right to me; I've applied it on trunk. If you are able to produce a testcase for this, please attach it. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 15:12:06 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 15:12:06 -0600 (CST) Subject: [LLVMbugs] [Bug 6138] clang x86 *mmintrin.h header problems In-Reply-To: References: Message-ID: <20100225211207.3673E2A6C12C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6138 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #6 from Chris Lattner 2010-02-25 15:12:06 CST --- assuming fixed with the transpose bug fix applied. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 15:13:23 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 15:13:23 -0600 (CST) Subject: [LLVMbugs] [Bug 6393] [X86] LLVM re-orders MXCSR access in an invalid manner In-Reply-To: References: Message-ID: <20100225211323.99D882A6C12D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6393 Dan Gohman changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |DUPLICATE --- Comment #2 from Dan Gohman 2010-02-25 15:13:23 CST --- *** This bug has been marked as a duplicate of bug 6050 *** -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 15:17:24 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 15:17:24 -0600 (CST) Subject: [LLVMbugs] [Bug 2242] Canonicalization of induction variables needs some heuristics In-Reply-To: References: Message-ID: <20100225211724.04F0B2A6C12D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2242 Dan Gohman changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #2 from Dan Gohman 2010-02-25 15:17:23 CST --- This is done. LSR is even eliminating the extra register now. If there are outstanding issues, please file new bug reports. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 15:25:53 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 15:25:53 -0600 (CST) Subject: [LLVMbugs] [Bug 3090] Apparent miscompilation with -loop-index-split -loop-rotate -indvars -domtree In-Reply-To: References: Message-ID: <20100225212553.53C5E2A6C130@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3090 Dan Gohman changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID --- Comment #2 from Dan Gohman 2010-02-25 15:25:52 CST --- Without a complete testcase, this can't be confirmed. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 15:26:52 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 15:26:52 -0600 (CST) Subject: [LLVMbugs] [Bug 5256] SCEV misses simple finite loop In-Reply-To: References: Message-ID: <20100225212652.5FB082A6C12F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5256 Dan Gohman changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |DUPLICATE --- Comment #2 from Dan Gohman 2010-02-25 15:26:52 CST --- *** This bug has been marked as a duplicate of bug 3328 *** -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 15:29:08 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 15:29:08 -0600 (CST) Subject: [LLVMbugs] [Bug 5059] "Reg operand is not on a use list" In-Reply-To: References: Message-ID: <20100225212908.407A62A6C12F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=5059 Dan Gohman changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #6 from Dan Gohman 2010-02-25 15:29:07 CST --- If the problem is observed again, please reopoen or file a new bug report. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 16:30:48 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 16:30:48 -0600 (CST) Subject: [LLVMbugs] [Bug 6346] GCC/EDG Extension: Comparison of void** and void const** rejected. In-Reply-To: References: Message-ID: <20100225223048.C105A2A6C12D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6346 Douglas Gregor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #3 from Douglas Gregor 2010-02-25 16:30:48 CST --- Fixed in r97177. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 16:34:46 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 16:34:46 -0600 (CST) Subject: [LLVMbugs] [Bug 6422] globalopt crashes in OptimizeGlobalAddressOfMalloc In-Reply-To: References: Message-ID: <20100225223446.B50352A6C12D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6422 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #2 from Chris Lattner 2010-02-25 16:34:46 CST --- Fixed here: http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20100222/096859.html You're right, the prototype is wrong and globalopt shouldn't crash. You're probably missing a #include for stdlib.h in that file or something. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 17:41:12 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 17:41:12 -0600 (CST) Subject: [LLVMbugs] [Bug 6424] New: Not instantiating default constructor Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6424 Summary: Not instantiating default constructor Product: clang Version: unspecified Platform: PC OS/Version: All Status: NEW Severity: enhancement Priority: P5 Component: C++ AssignedTo: unassignedclangbugs at nondot.org ReportedBy: dgregor at apple.com CC: llvmbugs at cs.uiuc.edu, dgregor at apple.com This code should be ill-formed, but we fail to instantiate the default constructor for X<7> and therefore don't see it. This is a reduction of the tramp3d-v4 link failure. template struct X { X() { int *ip = I; } }; template struct Y { typedef X<7> X7; void f() { X7(); } }; template void Y<3>::f(); -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 18:38:22 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 18:38:22 -0600 (CST) Subject: [LLVMbugs] [Bug 6424] Not instantiating default constructor In-Reply-To: References: Message-ID: <20100226003822.C69292A6C12D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6424 Douglas Gregor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Douglas Gregor 2010-02-25 18:38:22 CST --- Fixed in r97195 -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 19:12:13 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 19:12:13 -0600 (CST) Subject: [LLVMbugs] [Bug 6354] Segfault when using @dynamic with GNU runtime In-Reply-To: References: Message-ID: <20100226011213.0FDE32A6C124@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6354 David Chisnall changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from David Chisnall 2010-02-25 19:12:12 CST --- Yup, it's still generating the method metadata for methods declared @dynamic and not implemented. This was set to some nonsense values for @dynamic protocols and the runtime was crashing when trying to load them. Now we only emit this for @synthesized properties. Fixed in r97199. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 19:14:09 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 19:14:09 -0600 (CST) Subject: [LLVMbugs] [Bug 6263] cmath errors on int-to-complex conversion In-Reply-To: References: Message-ID: <20100226011409.CC5202A6C12C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6263 Douglas Gregor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID --- Comment #4 from Douglas Gregor 2010-02-25 19:14:03 CST --- Closing this as invalid, since (1) we've made progress in this area in the last few days and (2) there aren't any tests here we can verify. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 19:17:53 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 19:17:53 -0600 (CST) Subject: [LLVMbugs] [Bug 6264] "no viable conversion" error when implicitly converting to an array type In-Reply-To: References: Message-ID: <20100226011756.AE03C2A6C124@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6264 Douglas Gregor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #4 from Douglas Gregor 2010-02-25 19:17:51 CST --- Committed Eli's fix in r97202. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 19:55:02 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 19:55:02 -0600 (CST) Subject: [LLVMbugs] [Bug 6425] New: check-lit does not run the ocaml binding tests Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6425 Summary: check-lit does not run the ocaml binding tests Product: Test Suite Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P5 Component: lit AssignedTo: unassignedbugs at nondot.org ReportedBy: jyasskin at google.com CC: llvmbugs at cs.uiuc.edu, daniel at zuster.org make check does run them. They're found in test/Bindings/Ocaml. You also need to install ocaml, re-configure, and build the bindings for them to show up. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 21:11:50 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 21:11:50 -0600 (CST) Subject: [LLVMbugs] [Bug 6426] New: Structure layout is not correct in big endian. Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6426 Summary: Structure layout is not correct in big endian. Product: libraries Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: critical Priority: P5 Component: Target Description Classes AssignedTo: unassignedbugs at nondot.org ReportedBy: dodohack at gmail.com CC: llvmbugs at cs.uiuc.edu This bug can be reproduced when you compile 2003-05-07-VarArgs.c for big endian target. There is a structure "DWordS dw = { 18, 'a' };" that past as va_arg to function test, LowerFormalArgument can currectly deal with "dw" and store it in register or on stack, but llvm IR that expanded from macro va_arg failed to access char 'a' in big endian, because 'a' stored at least significant byte, but generated IR assume 'a' stored at most significant byte. I have read the code about struct layout, and tried to fix this bug like this: original code: TargetData.cpp ================================================================= StructLayout::StructLayout(const StructType *ST, const TargetData &TD) { StructAlignment = 0; StructSize = 0; NumElements = ST->getNumElements(); // Loop over each of the elements, placing them in memory. for (unsigned i = 0, e = NumElements; i != e; ++i) { const Type *Ty = ST->getElementType(i); unsigned TyAlign = ST->isPacked() ? 1 : TD.getABITypeAlignment(Ty); // Add padding if necessary to align the data element properly. if ((StructSize & (TyAlign-1)) != 0) StructSize = TargetData::RoundUpAlignment(StructSize, TyAlign); // Keep track of maximum alignment constraint. StructAlignment = std::max(TyAlign, StructAlignment); MemberOffsets[i] = StructSize; ...... ================================================================= updated code: TargetData.cpp ================================================================= StructLayout::StructLayout(const StructType *ST, const TargetData &TD) { StructAlignment = 0; StructSize = 0; NumElements = ST->getNumElements(); bool isBigEndian = TD.isBigEndian(); // Loop over each of the elements, placing them in memory. for (unsigned i = 0, e = NumElements; i != e; ++i) { const Type *Ty = ST->getElementType(i); unsigned TyAlign = ST->isPacked() ? 1 : TD.getABITypeAlignment(Ty); // Add padding if necessary to align the data element properly. if ((StructSize & (TyAlign-1)) != 0) StructSize = TargetData::RoundUpAlignment(StructSize, TyAlign); // Keep track of maximum alignment constraint. StructAlignment = std::max(TyAlign, StructAlignment); if (isBigEndian && !Ty->isAggregateType() && Ty->getScalarSizeInBits() < 32 && Ty->getScalarSizeInBits() > 0) { MemberOffsets[i] = StructSize + 4 - Ty->getScalarSizeInBits()/8; } else { MemberOffsets[i] = StructSize; } ...... Add, other places that related to structure padding should be fixed, say function EmitGlobalConstantStruct in AsmPrinter.cpp. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 21:48:27 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 21:48:27 -0600 (CST) Subject: [LLVMbugs] [Bug 6427] New: LLVM doesn't gracefully handle bitcode generated by newer version Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6427 Summary: LLVM doesn't gracefully handle bitcode generated by newer version Product: libraries Version: 2.6 Platform: All OS/Version: All Status: NEW Severity: enhancement Priority: P5 Component: Bitcode Writer AssignedTo: unassignedbugs at nondot.org ReportedBy: justin.lebar at gmail.com CC: llvmbugs at cs.uiuc.edu Forgive me if this is already well-understood. I have two versions of Klee installed on my machine; one uses LLVM 2.3, and the other uses LLVM 2.6. I accidentally tried to run some bitcode compiled with the 2.6 compiler through my copy of Klee which uses LLVM 2.3. Rather than fail gracefully, LLVM treated me to a strange assertion: ParameterAttributes.cpp:121: static llvm::PAListPtr llvm::PAListPtr::get(const llvm::ParamAttrsWithIndex*, unsigned int): Assertion `Attrs[i].Attrs != ParamAttr::None && "Pointless parameter attribute!"' failed. It appears that Klee built off LLVM 2.6 can read LLVM 2.3 bitcode files without a problem, so perhaps this is a non-issue in terms of forward-compatibility. But certainly going forward, it would be nice if future versions could fail more gracefully on bitcode they can't understand. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 23:37:05 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 23:37:05 -0600 (CST) Subject: [LLVMbugs] [Bug 6428] New: G++ warns about this, we don't. Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6428 Summary: G++ warns about this, we don't. Product: clang Version: unspecified Platform: PC OS/Version: All Status: NEW Severity: enhancement Priority: P5 Component: C++ AssignedTo: unassignedclangbugs at nondot.org ReportedBy: clattner at apple.com CC: llvmbugs at cs.uiuc.edu, dgregor at apple.com It's pretty scary that we allow this (strings have type const char*, not char*): int main(void) { static char *t = "hello"; return(0); } -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 23:47:10 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 23:47:10 -0600 (CST) Subject: [LLVMbugs] [Bug 3081] "Whoops, an exception leaked out of bugpoint. This is a bug in bugpoint!" In-Reply-To: References: Message-ID: <20100226054710.870EE2A6C12F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=3081 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |WORKSFORME --- Comment #3 from Chris Lattner 2010-02-25 23:47:10 CST --- Nick is working on eliminating EH from bugpoint, but this is likely already fixed. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Thu Feb 25 23:58:33 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Thu, 25 Feb 2010 23:58:33 -0600 (CST) Subject: [LLVMbugs] [Bug 6427] LLVM doesn't gracefully handle bitcode generated by newer version In-Reply-To: References: Message-ID: <20100226055833.473642A6C124@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6427 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |WORKSFORME --- Comment #1 from Chris Lattner 2010-02-25 23:58:32 CST --- Yep, llvm 2.3 sucks. :) While I'd like to fix specific bugs in the bitcode reader, unfortunately it is not a "Verifying reader" and we don't aim to make it such. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Fri Feb 26 00:03:33 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Fri, 26 Feb 2010 00:03:33 -0600 (CST) Subject: [LLVMbugs] [Bug 6160] error: explicit specialization of 'getline' after instantiation In-Reply-To: References: Message-ID: <20100226060333.1960B2A6C12F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6160 Douglas Gregor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #4 from Douglas Gregor 2010-02-26 00:03:32 CST --- Fixed in r97210. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Fri Feb 26 00:06:16 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Fri, 26 Feb 2010 00:06:16 -0600 (CST) Subject: [LLVMbugs] [Bug 6166] Template w/derived func return type equivalence bug In-Reply-To: References: Message-ID: <20100226060616.97D872A6C12F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6166 Douglas Gregor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |WORKSFORME --- Comment #1 from Douglas Gregor 2010-02-26 00:06:16 CST --- This is working for me now. I don't recall who fixed it, but I remember seeing the patch go in. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Fri Feb 26 01:34:25 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Fri, 26 Feb 2010 01:34:25 -0600 (CST) Subject: [LLVMbugs] [Bug 6415] [freebsd] clang miscompile with -static and -O2 In-Reply-To: References: Message-ID: <20100226073425.9EF942A6C12F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6415 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|INVALID | Summary|clang miscompile with |[freebsd] clang miscompile |-static and -O2 |with -static and -O2 --- Comment #3 from Chris Lattner 2010-02-26 01:34:25 CST --- I'm fine with reopening if you think there is a real bug here, I'll let you track this down (can't do much without a freebsd system) -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Fri Feb 26 03:42:41 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Fri, 26 Feb 2010 03:42:41 -0600 (CST) Subject: [LLVMbugs] [Bug 6429] New: segfault on x86_64: ucomisd takes bad address for comparison with 0.0 Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6429 Summary: segfault on x86_64: ucomisd takes bad address for comparison with 0.0 Product: new-bugs Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P5 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: karrenberg at cs.uni-saarland.de CC: llvmbugs at cs.uiuc.edu seems like I stumbled upona bug in x86_64 codegen in the latest svn trunk. The problem did not appear in the last revision I used (r95086). My C source looks like this: #include int main(int argc, char** argv) { double a[2] = {1.14, 3.134}; printf("unknown side-effect\n"); for (unsigned i=0; i<2; ++i) { const double bad = a[i] / (a[i] == 0.0f ? 0.00001f : a[i]); printf("%f\n", bad); } return 0; } the expected output here is the following (e.g. gcc 4.4.1 or icc 11.1): unknown side-effect 1.000000 1.000000 compile with llvm-gcc: llvm-gcc -o test.bc -c -emit-llvm -Wall test.cpp 'lli test.bc' produces the following output: unknown side-effect 0 lli 0x0000000000b8396f 1 lli 0x0000000000b8415d 2 libpthread.so.0 0x00007fdd88cc1190 3 libpthread.so.0 0x00007fdd8903b0c5 Stack dump: 0. Program arguments: lli test.bc Segmentation fault gdb says it crashes at the double-comparison with 0, which seems obvious looking at the address: 0x00007ffff7f4b094 : ucomisd 0xffffffffffffff73,%xmm0 part of the disassembly between the two printfs: 0x00007ffff7f4b05d : callq *%rax 0x00007ffff7f4b05f : movl $0x0,0xc(%rsp) 0x00007ffff7f4b067 : mov $0x7ffff7fd9034,%rbx 0x00007ffff7f4b071 : mov $0x7ffff6ef4b50,%r14 0x00007ffff7f4b07b : mov $0x3ee4f8b580000000,%r15 0x00007ffff7f4b085 : jmpq 0x7ffff7f4b0dc 0x00007ffff7f4b08a : mov 0xc(%rsp),%eax 0x00007ffff7f4b08e : movsd 0x10(%rsp,%rax,8),%xmm0 0x00007ffff7f4b094 : ucomisd 0xffffffffffffff73,%xmm0 0x00007ffff7f4b09d : setnp %al 0x00007ffff7f4b0a0 : sete %cl 0x00007ffff7f4b0a3 : test %al,%cl 0x00007ffff7f4b0a5 : jne 0x7ffff7f4b0c0 0x00007ffff7f4b0ab : mov 0xc(%rsp),%eax 0x00007ffff7f4b0af : movsd 0x10(%rsp,%rax,8),%xmm1 0x00007ffff7f4b0b5 : movsd %xmm1,0x20(%rsp) 0x00007ffff7f4b0bb : jmpq 0x7ffff7f4b0c5 0x00007ffff7f4b0c0 : mov %r15,0x20(%rsp) 0x00007ffff7f4b0c5 : divsd 0x20(%rsp),%xmm0 0x00007ffff7f4b0cb : movsd %xmm0,(%rsp) 0x00007ffff7f4b0d0 : mov %rbx,%rdi 0x00007ffff7f4b0d3 : mov $0x1,%al 0x00007ffff7f4b0d5 : callq *%r14 the same happens when compiling with llvm-gcc and any optimization flag as well as with clang -O0. compiling with clang -O1 to -O3 works fine, though, so I guess it is something in the generated bitcode, which looks like this for llvm-gcc -O3: ; ModuleID = 'test.bc' target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64" target triple = "x86_64-unknown-linux-gnu" @.str = private constant [20 x i8] c"unknown side-effect\00", align 1 ; <[20 x i8]*> [#uses=1] @.str1 = private constant [4 x i8] c"%f\0A\00", align 1 ; <[4 x i8]*> [#uses=1] define i32 @main(i32 %argc, i8** nocapture %argv) nounwind { bb.nph: %a = alloca [2 x double], align 8 ; <[2 x double]*> [#uses=3] %0 = getelementptr inbounds [2 x double]* %a, i64 0, i64 0 ; [#uses=1] store double 1.140000e+00, double* %0, align 8 %1 = getelementptr inbounds [2 x double]* %a, i64 0, i64 1 ; [#uses=1] store double 3.134000e+00, double* %1, align 8 %2 = call i32 @puts(i8* getelementptr inbounds ([20 x i8]* @.str, i64 0, i64 0)) ; [#uses=0] br label %bb bb: ; preds = %bb3.bb_crit_edge, %bb.nph %3 = phi double [ 1.140000e+00, %bb.nph ], [ %.pre, %bb3.bb_crit_edge ] ; [#uses=3] %indvar = phi i64 [ 1, %bb.nph ], [ %phitmp, %bb3.bb_crit_edge ] ; [#uses=3] %4 = fcmp une double %3, 0.000000e+00 ; [#uses=1] %iftmp.2.0 = select i1 %4, double %3, double 0x3EE4F8B580000000 ; [#uses=1] %5 = fdiv double %3, %iftmp.2.0 ; [#uses=1] %6 = call i32 (i8*, ...)* @printf(i8* noalias getelementptr inbounds ([4 x i8]* @.str1, i64 0, i64 0), double %5) ; [#uses=0] %exitcond = icmp eq i64 %indvar, 2 ; [#uses=1] br i1 %exitcond, label %bb5, label %bb3.bb_crit_edge bb3.bb_crit_edge: ; preds = %bb %scevgep.phi.trans.insert = getelementptr [2 x double]* %a, i64 0, i64 %indvar ; [#uses=1] %.pre = load double* %scevgep.phi.trans.insert, align 8 ; [#uses=1] %phitmp = add i64 %indvar, 1 ; [#uses=1] br label %bb bb5: ; preds = %bb ret i32 0 } declare i32 @puts(i8* nocapture) nounwind declare i32 @printf(i8* noalias nocapture, ...) nounwind this is what clang -O3 builds: ; ModuleID = 'test.bc' target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64" target triple = "x86_64-unknown-linux-gnu" @_ZZ4mainE1a = internal constant [2 x double] [double 1.140000e+00, double 3.134000e+00], align 8 ; <[2 x double]*> [#uses=1] @.str1 = private constant [4 x i8] c"%f\0A\00" ; <[4 x i8]*> [#uses=1] @str = internal constant [20 x i8] c"unknown side-effect\00" ; <[20 x i8]*> [#uses=1] define i32 @main(i32 %argc, i8** nocapture %argv) nounwind { bb.nph: %puts = tail call i32 @puts(i8* getelementptr inbounds ([20 x i8]* @str, i64 0, i64 0)) ; [#uses=0] br label %for.body for.body: ; preds = %for.body, %bb.nph %indvar = phi i64 [ 0, %bb.nph ], [ %indvar.next, %for.body ] ; [#uses=2] %arrayidx15 = getelementptr [2 x double]* @_ZZ4mainE1a, i64 0, i64 %indvar ; [#uses=1] %tmp5 = load double* %arrayidx15 ; [#uses=2] %div = fdiv double %tmp5, %tmp5 ; [#uses=1] %call18 = tail call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([4 x i8]* @.str1, i64 0, i64 0), double %div) ; [#uses=0] %indvar.next = add i64 %indvar, 1 ; [#uses=2] %exitcond = icmp eq i64 %indvar.next, 2 ; [#uses=1] br i1 %exitcond, label %for.end, label %for.body for.end: ; preds = %for.body ret i32 0 } declare i32 @printf(i8* nocapture, ...) nounwind declare i32 @puts(i8* nocapture) nounwind -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Fri Feb 26 04:57:09 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Fri, 26 Feb 2010 04:57:09 -0600 (CST) Subject: [LLVMbugs] [Bug 4605] ParseBitcodeFile() no longer works on files with @llvm.global_ctors In-Reply-To: References: Message-ID: <20100226105709.493752A6C12C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4605 Owen Anderson changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |WORKSFORME -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Fri Feb 26 08:16:43 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Fri, 26 Feb 2010 08:16:43 -0600 (CST) Subject: [LLVMbugs] [Bug 6415] [freebsd] clang miscompile with -static and -O2 In-Reply-To: References: Message-ID: <20100226141643.4924D2A6C124@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6415 Yann Droneaud changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution| |INVALID -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Fri Feb 26 09:32:03 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Fri, 26 Feb 2010 09:32:03 -0600 (CST) Subject: [LLVMbugs] [Bug 6430] New: Ran out of registers during register allocation for vfwprintf Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6430 Summary: Ran out of registers during register allocation for vfwprintf Product: libraries Version: 2.6 Platform: PC OS/Version: Linux Status: NEW Severity: major Priority: P2 Component: Register Allocator AssignedTo: unassignedbugs at nondot.org ReportedBy: sergey.yakoushkin at gmail.com CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4318) --> (http://llvm.org/bugs/attachment.cgi?id=4318) reduced vfwprinf I'm compiling eglibc (glibc) library for x86. LLVM ERROR: Ran out of registers during register allocation! -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Fri Feb 26 09:38:20 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Fri, 26 Feb 2010 09:38:20 -0600 (CST) Subject: [LLVMbugs] [Bug 6431] New: incorrect significand bits in __builtin_nan Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6431 Summary: incorrect significand bits in __builtin_nan Product: clang Version: trunk Platform: All OS/Version: All Status: NEW Severity: normal Priority: P5 Component: -New Bugs AssignedTo: unassignedclangbugs at nondot.org ReportedBy: gohman at apple.com CC: llvmbugs at cs.uiuc.edu For this code: double NaN = __builtin_nan("1"); GCC and llvm-gcc emit this: .quad 9221120237041090561 aka 0x7ff8000000000001. Clang emits this: .quad 9218868441522372607 aka 0x7ff00000ffffffff. The GCC manual section "Other Builtins" explicitly specifies how the string in __builtin_nan is interpreted. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Fri Feb 26 09:48:59 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Fri, 26 Feb 2010 09:48:59 -0600 (CST) Subject: [LLVMbugs] [Bug 6432] New: bogus error on huge float val Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6432 Summary: bogus error on huge float val Product: clang Version: trunk Platform: All OS/Version: All Status: NEW Severity: normal Priority: P5 Component: -New Bugs AssignedTo: unassignedclangbugs at nondot.org ReportedBy: gohman at apple.com CC: llvmbugs at cs.uiuc.edu For this code: double d = 99.e99999; GCC emits a warning: floating constant exceeds range of ?double? and assumes a value of infinity. clang emits an error: magnitude of floating-point constant too small for type 'double'; minimum is 4.940656458412465E-324 First, clang is considering an out-of-range floating-point value an error instead of a warning. FWIW, this testcase is derived from real-world code. Second, clang's message is bogus; the value is too great, not too small. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Fri Feb 26 09:55:30 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Fri, 26 Feb 2010 09:55:30 -0600 (CST) Subject: [LLVMbugs] [Bug 6433] New: Assertion failed: (Ty.isCanonical() && "should always have a canonical type here") Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6433 Summary: Assertion failed: (Ty.isCanonical() && "should always have a canonical type here") Product: clang Version: trunk Platform: Other OS/Version: FreeBSD Status: NEW Severity: enhancement Priority: P5 Component: -New Bugs AssignedTo: unassignedclangbugs at nondot.org ReportedBy: hinokind at gmail.com CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4319) --> (http://llvm.org/bugs/attachment.cgi?id=4319) testcase $ cat assert9.c typedef double gdouble; void focus_changed_cb () { __builtin_va_list pa; double mfloat; mfloat = __builtin_va_arg((pa), gdouble); } $ clang assert9.c Assertion failed: (Ty.isCanonical() && "should always have a canonical type here"), function getCoerceResult, file TargetInfo.cpp, line 975. Stack dump: 0. Program arguments: /usr/local/bin/clang -cc1 -triple x86_64-unknown-freebsd8.0 -S -disable-free -main-file-name assert9.c -mrelocation-model static -mdisable-fp-elim -mconstructor-aliases -munwind-tables -target-cpu x86-64 -resource-dir /usr/local/lib/clang/1.1 -fmessage-length 157 -fgnu-runtime -fdiagnostics-show-option -fcolor-diagnostics -o /tmp/cc-pjQpzp.s -x c assert9.c 1. parser at end of file 2. assert9.c:2:6: LLVM IR generation of declaration 'focus_changed_cb' 3. assert9.c:2:6: Generating code for declaration 'focus_changed_cb' 4. assert9.c:2:26: LLVM IR generation of compound statement ('{}') clang: error: compiler command failed due to signal 6 (use -v to see invocation) $ clang --version clang version 1.1 (trunk 97224) Target: x86_64-unknown-freebsd8.0 Thread model: posix -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Fri Feb 26 10:00:59 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Fri, 26 Feb 2010 10:00:59 -0600 (CST) Subject: [LLVMbugs] [Bug 6434] New: Blackfin DAG ISel Uses Singular Iterators Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6434 Summary: Blackfin DAG ISel Uses Singular Iterators Product: new-bugs Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: enhancement Priority: P5 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: greened at obbligato.org CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4320) --> (http://llvm.org/bugs/attachment.cgi?id=4320) Patch to enable extra SelectionDAG checking [Filing under new-bugs since there is no Blackfin codegen component.] When applied to trunk and build in Debug+Checks mod, the attached patch causes the Blackfin codegen to assert with an error about referencing a singular iterator. [x86_64-mod-par]: FAIL: /ptmp/dag/llvm-project.modified/llvm/trunk/test/CodeGen/Blackfin/cmp64.ll [x86_64-mod-par]: Failed with signal(SIGABRT) at line 1 [x86_64-mod-par]: while running: llc < /ptmp/dag/llvm-project.modified/llvm/trunk/test/CodeGen/Blackfin/cmp64.ll -march=bfin [x86_64-mod-par]: /usr/include/c++/4.1.2/debug/safe_iterator.h:422:error: attempt to compare [x86_64-mod-par]: a singular iterator to a past-the-end iterator. [x86_64-mod-par]: [x86_64-mod-par]: Objects involved in the operation: [x86_64-mod-par]: iterator "lhs" @ 0x0x7fff7dd0d988 { [x86_64-mod-par]: type = N11__gnu_debug14_Safe_iteratorIN10__gnu_norm20_List_const_iteratorIPN4llvm5SDUseEEEN15__gnu_debug_def4listIS5_SaIS5_EEEEE (constant iterator); [x86_64-mod-par]: state = singular; [x86_64-mod-par]: references sequence with type `N15__gnu_debug_def4listIPN4llvm5SDUseESaIS3_EEE' @ 0x0x7fff7dd0d988 [x86_64-mod-par]: } [x86_64-mod-par]: iterator "rhs" @ 0x0x7fff7dd0d840 { [x86_64-mod-par]: type = N11__gnu_debug14_Safe_iteratorIN10__gnu_norm20_List_const_iteratorIPN4llvm5SDUseEEEN15__gnu_debug_def4listIS5_SaIS5_EEEEE (constant iterator); [x86_64-mod-par]: state = past-the-end; [x86_64-mod-par]: references sequence with type `N15__gnu_debug_def4listIPN4llvm5SDUseESaIS3_EEE' @ 0x0x7fff7dd0d840 [x86_64-mod-par]: } [x86_64-mod-par]: 0 llc 0x0000000001c3025e [x86_64-mod-par]: 1 llc 0x0000000001c3088e [x86_64-mod-par]: 2 libc.so.6 0x00002b8e2d449c10 [x86_64-mod-par]: 3 libc.so.6 0x00002b8e2d449b95 gsignal + 53 [x86_64-mod-par]: 4 libc.so.6 0x00002b8e2d44af90 abort + 272 [x86_64-mod-par]: 5 libstdc++.so.6 0x00002b8e2d010dc7 __gnu_debug::_Error_formatter::_M_error() const + 471 [x86_64-mod-par]: 6 llc 0x0000000000eda007 bool __gnu_debug::operator==<__gnu_norm::_List_const_iterator, __gnu_debug_def::list > >(__gnu_debug::_Safe_iterator<__gnu_norm::_List_const_iterator, __gnu_debug_def::list > > const&, __gnu_debug::_Safe_iterator<__gnu_norm::_List_const_iterator, __gnu_debug_def::list > > const&) + 177 [x86_64-mod-par]: 7 llc 0x0000000000eda2c8 llvm::SDNode::use_iterator::atEnd() const + 46 [x86_64-mod-par]: 8 llc 0x0000000000eda2f3 llvm::SDNode::use_iterator::operator++() + 21 [x86_64-mod-par]: 9 llc 0x0000000000f51153 (anonymous namespace)::BlackfinDAGToDAGISel::FixRegisterClasses(llvm::SelectionDAG&) + 969 [x86_64-mod-par]: 10 llc 0x0000000000f516c9 (anonymous namespace)::BlackfinDAGToDAGISel::InstructionSelect() + 187 [x86_64-mod-par]: 11 llc 0x0000000001698b5f llvm::SelectionDAGISel::CodeGenAndEmitDAG() + 3713 [x86_64-mod-par]: 12 llc 0x000000000169a886 llvm::SelectionDAGISel::SelectBasicBlock(llvm::BasicBlock*, llvm::ilist_iterator, llvm::ilist_iterator, bool&) + 686 [x86_64-mod-par]: 13 llc 0x000000000169b22b llvm::SelectionDAGISel::SelectAllBasicBlocks(llvm::Function&, llvm::MachineFunction&, llvm::MachineModuleInfo*, llvm::DwarfWriter*, llvm::TargetInstrInfo const&) + 2419 [x86_64-mod-par]: 14 llc 0x000000000169bc85 llvm::SelectionDAGISel::runOnMachineFunction(llvm::MachineFunction&) + 931 [x86_64-mod-par]: 15 llc 0x00000000017b889f llvm::MachineFunctionPass::runOnFunction(llvm::Function&) + 85 [x86_64-mod-par]: 16 llc 0x0000000001b827ca llvm::FPPassManager::runOnFunction(llvm::Function&) + 336 [x86_64-mod-par]: 17 llc 0x0000000001b839bb llvm::FunctionPassManagerImpl::run(llvm::Function&) + 79 [x86_64-mod-par]: 18 llc 0x0000000001b83b5a llvm::FunctionPassManager::run(llvm::Function&) + 110 [x86_64-mod-par]: 19 llc 0x0000000000e4c556 main + 2750 [x86_64-mod-par]: 20 libc.so.6 0x00002b8e2d437154 __libc_start_main + 244 [x86_64-mod-par]: 21 llc 0x0000000000e4ac69 [x86_64-mod-par]: Stack dump: [x86_64-mod-par]: 0. Program arguments: llc -march=bfin [x86_64-mod-par]: 1. Running pass 'Blackfin DAG->DAG Pattern Instruction Selection' on function '@main' -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Fri Feb 26 11:18:07 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Fri, 26 Feb 2010 11:18:07 -0600 (CST) Subject: [LLVMbugs] [Bug 6435] New: globalopt crashes in PerformHeapAllocSRoA Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6435 Summary: globalopt crashes in PerformHeapAllocSRoA Product: new-bugs Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P5 Component: new bugs AssignedTo: unassignedbugs at nondot.org ReportedBy: kevin.fan at gmail.com CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4323) --> (http://llvm.org/bugs/attachment.cgi?id=4323) test.ll "opt -globalopt test.bc" dumps core. Similar to bug 6422, there is a malloc with an incorrect argument type of i32, which may be confusing some code in globalopt. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Fri Feb 26 11:57:11 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Fri, 26 Feb 2010 11:57:11 -0600 (CST) Subject: [LLVMbugs] [Bug 6436] New: command-line argument to set target triple Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6436 Summary: command-line argument to set target triple Product: clang Version: trunk Platform: All OS/Version: All Status: NEW Severity: enhancement Priority: P5 Component: -New Bugs AssignedTo: unassignedclangbugs at nondot.org ReportedBy: gohman at apple.com CC: llvmbugs at cs.uiuc.edu An FAQ in #llvm is "how do I set the target triple in clang?". Right now, the answer usually given is -ccc-host-triple. That's a funny way to spell an option to control the target. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Fri Feb 26 12:06:31 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Fri, 26 Feb 2010 12:06:31 -0600 (CST) Subject: [LLVMbugs] [Bug 6436] command-line argument to set target triple In-Reply-To: References: Message-ID: <20100226180631.0FF1D2A6C12D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6436 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |LATER --- Comment #1 from Chris Lattner 2010-02-26 12:06:30 CST --- This is really part of http://clang.llvm.org/UniversalDriver.html. We want a holistic solution to this, I don't think this bugzilla will help. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Fri Feb 26 12:23:33 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Fri, 26 Feb 2010 12:23:33 -0600 (CST) Subject: [LLVMbugs] [Bug 6435] globalopt crashes in PerformHeapAllocSRoA In-Reply-To: References: Message-ID: <20100226182333.648DF2A6C12D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6435 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Chris Lattner 2010-02-26 12:23:33 CST --- Fixed in r97231, thanks for finding these! -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Fri Feb 26 13:06:32 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Fri, 26 Feb 2010 13:06:32 -0600 (CST) Subject: [LLVMbugs] [Bug 6437] New: Assertion when casting 'struct in_addr const' to 'uint32_t&' Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6437 Summary: Assertion when casting 'struct in_addr const' to 'uint32_t&' Product: clang Version: trunk Platform: PC OS/Version: Linux Status: NEW Severity: enhancement Priority: P5 Component: -New Bugs AssignedTo: unassignedclangbugs at nondot.org ReportedBy: brian at cowe.org CC: llvmbugs at cs.uiuc.edu Compiling this source file generates an assertion in clang. I would expect a useful warning / error message to be shown, or the code to compile if it's valid -- but not the compiler to crash. Trunk, change 97225. Full compilation command line and results included below. ===== BEGIN SOURCE foo.cpp ===== #include uint32_t copy( const struct sockaddr_in &new_addr ) { uint32_t addr = (uint32_t&)new_addr.sin_addr; return( addr ); } ===== END SOURCE foo.cpp ===== bcowe$ /space/bcowe/llvm-2.7-inprogress/Release/bin/clang -c -v foo.cpp clang version 1.1 (trunk 97225) Target: x86_64-unknown-linux-gnu Thread model: posix "/space/bcowe/llvm-2.7-inprogress/Release/bin/clang" -cc1 -triple x86_64-unknown-linux-gnu -S -disable-free -main-file-name foo.cpp -mrelocation-model static -mdisable-fp-elim -mconstructor-aliases -munwind-tables -target-cpu x86-64 -v -resource-dir /space/bcowe/llvm-2.7-inprogress/Release/lib/clang/1.1 -fmessage-length 209 -fexceptions -fgnu-runtime -fdiagnostics-show-option -fcolor-diagnostics -o /tmp/cc-OL4RBh.s -x c++ foo.cpp clang -cc1 version 1.1 based upon llvm 2.7svn hosted on x86_64-unknown-linux-gnu ignoring nonexistent directory "/usr/include/c++/4.4.3" ignoring nonexistent directory "/usr/include/c++/4.4.3/x86_64-pc-linux-gnu/" ignoring nonexistent directory "/usr/include/c++/4.4.3/backward" ignoring nonexistent directory "/usr/include/c++/4.4.3" ignoring nonexistent directory "/usr/include/c++/4.4.3/i686-pc-linux-gnu/" ignoring nonexistent directory "/usr/include/c++/4.4.3/backward" ignoring nonexistent directory "/usr/include/c++/4.4.2" ignoring nonexistent directory "/usr/include/c++/4.4.2/x86_64-linux-gnu/" ignoring nonexistent directory "/usr/include/c++/4.4.2/backward" ignoring nonexistent directory "/usr/include/c++/4.1.3" ignoring nonexistent directory "/usr/include/c++/4.1.3/i486-linux-gnu/" ignoring nonexistent directory "/usr/include/c++/4.1.3/backward" ignoring nonexistent directory "/usr/include/c++/4.3.3" ignoring nonexistent directory "/usr/include/c++/4.3.3/x86_64-linux-gnu/" ignoring nonexistent directory "/usr/include/c++/4.3.3/backward" ignoring nonexistent directory "/usr/include/c++/4.1.2" ignoring nonexistent directory "/usr/include/c++/4.1.2/i386-redhat-linux/" ignoring nonexistent directory "/usr/include/c++/4.1.2/backward" ignoring nonexistent directory "/usr/include/c++/4.3.0" ignoring nonexistent directory "/usr/include/c++/4.3.0/i386-redhat-linux/" ignoring nonexistent directory "/usr/include/c++/4.3.0/backward" ignoring nonexistent directory "/usr/include/c++/4.3.2" ignoring nonexistent directory "/usr/include/c++/4.3.2/i386-redhat-linux/" ignoring nonexistent directory "/usr/include/c++/4.3.2/backward" ignoring nonexistent directory "/usr/include/c++/4.3.2" ignoring nonexistent directory "/usr/include/c++/4.3.2/x86_64-redhat-linux/" ignoring nonexistent directory "/usr/include/c++/4.3.2/backward" ignoring nonexistent directory "/usr/include/c++/4.4.1/i586-redhat-linux/" ignoring nonexistent directory "/usr/include/c++/4.4.2" ignoring nonexistent directory "/usr/include/c++/4.4.2/i686-redhat-linux/" ignoring nonexistent directory "/usr/include/c++/4.4.2/backward" ignoring nonexistent directory "/usr/include/c++/4.4.3" ignoring nonexistent directory "/usr/include/c++/4.4.3/i686-redhat-linux/" ignoring nonexistent directory "/usr/include/c++/4.4.3/backward" ignoring nonexistent directory "/usr/include/c++/4.3/i586-suse-linux/" ignoring nonexistent directory "/usr/include/c++/4.3/x86_64-suse-linux/" ignoring nonexistent directory "/usr/include/c++/4.4/i586-suse-linux/" ignoring nonexistent directory "/usr/include/c++/4.4/x86_64-suse-linux/" ignoring nonexistent directory "/usr/include/c++/4.3.1" ignoring nonexistent directory "/usr/include/c++/4.3.1/i686-pc-linux-gnu/" ignoring nonexistent directory "/usr/include/c++/4.3.1/backward" ignoring nonexistent directory "/usr/include/c++/4.3.1" ignoring nonexistent directory "/usr/include/c++/4.3.1/x86_64-unknown-linux-gnu/" ignoring nonexistent directory "/usr/include/c++/4.3.1/backward" ignoring nonexistent directory "/usr/lib/gcc/i686-pc-linux-gnu/4.3.4/include/g++-v4" ignoring nonexistent directory "/usr/lib/gcc/i686-pc-linux-gnu/4.3.4/include/g++-v4/i686-pc-linux-gnu/" ignoring nonexistent directory "/usr/lib/gcc/i686-pc-linux-gnu/4.3.4/include/g++-v4/backward" ignoring nonexistent directory "/usr/lib/gcc/i686-pc-linux-gnu/4.3.2/include/g++-v4" ignoring nonexistent directory "/usr/lib/gcc/i686-pc-linux-gnu/4.3.2/include/g++-v4/i686-pc-linux-gnu/" ignoring nonexistent directory "/usr/lib/gcc/i686-pc-linux-gnu/4.3.2/include/g++-v4/backward" ignoring nonexistent directory "/usr/lib/gcc/i686-pc-linux-gnu/4.1.2/include/g++-v4" ignoring nonexistent directory "/usr/lib/gcc/i686-pc-linux-gnu/4.1.2/include/g++-v4/i686-pc-linux-gnu/" ignoring nonexistent directory "/usr/lib/gcc/i686-pc-linux-gnu/4.1.2/include/g++-v4/backward" ignoring nonexistent directory "/usr/include/c++/4.3/i486-pc-linux-gnu/" ignoring nonexistent directory "/usr/include/c++/4.3/i486-linux-gnu/" ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/4.1.2/include/g++-v4" ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/4.1.2/include/g++-v4/i686-pc-linux-gnu/" ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/4.1.2/include/g++-v4/backward" ignoring duplicate directory "/usr/include/c++/4.4.1" ignoring duplicate directory "/usr/include/c++/4.4.1/backward" ignoring duplicate directory "/usr/include/c++/4.3" ignoring duplicate directory "/usr/include/c++/4.3/backward" ignoring duplicate directory "/usr/include/c++/4.4.1" ignoring duplicate directory "/usr/include/c++/4.4.1/backward" ignoring duplicate directory "/usr/include/c++/4.4.1" ignoring duplicate directory "/usr/include/c++/4.4.1/backward" ignoring duplicate directory "/usr/include/c++/4.3" ignoring duplicate directory "/usr/include/c++/4.3/backward" ignoring duplicate directory "/usr/include/c++/4.3" ignoring duplicate directory "/usr/include/c++/4.3/backward" #include "..." search starts here: #include <...> search starts here: /space/bcowe/llvm-2.7-inprogress/Release/lib/clang/1.1/include /usr/include/c++/4.4.1 /usr/include/c++/4.4.1/x86_64-linux-gnu /usr/include/c++/4.4.1/backward /usr/include/c++/4.3 /usr/include/c++/4.3/backward /usr/local/include /usr/include End of search list. clang: CGExpr.cpp:579: clang::CodeGen::RValue clang::CodeGen::CodeGenFunction::EmitLoadOfLValue(clang::CodeGen::LValue, clang::QualType): Assertion `ExprType->isFunctionType() && "Unknown scalar value"' failed. 0 clang 0x0000000001469bff 1 clang 0x000000000146a3ed 2 libpthread.so.0 0x00007feb1cfed190 3 libc.so.6 0x00007feb1c2f34b5 gsignal + 53 4 libc.so.6 0x00007feb1c2f6f50 abort + 384 5 libc.so.6 0x00007feb1c2ec481 __assert_fail + 241 6 clang 0x000000000055b3dd 7 clang 0x00000000005810b7 8 clang 0x00000000005841f3 9 clang 0x0000000000580f52 10 clang 0x00000000005813d7 11 clang 0x000000000054f336 12 clang 0x000000000054ffd2 13 clang 0x00000000005bedb8 14 clang 0x00000000005c461e 15 clang 0x00000000005c207c 16 clang 0x00000000005c4380 17 clang 0x00000000005c4667 18 clang 0x00000000005c207c 19 clang 0x00000000005e6380 20 clang 0x000000000050bff4 21 clang 0x000000000050d3c4 22 clang 0x000000000050d5f4 23 clang 0x000000000050d914 24 clang 0x0000000000505661 25 clang 0x00000000004115e4 26 clang 0x00000000005f6482 27 clang 0x0000000000416bf9 28 clang 0x00000000004095ce 29 clang 0x000000000040c36b main + 1771 30 libc.so.6 0x00007feb1c2deabd __libc_start_main + 253 31 clang 0x0000000000407149 Stack dump: 0. Program arguments: /space/bcowe/llvm-2.7-inprogress/Release/bin/clang -cc1 -triple x86_64-unknown-linux-gnu -S -disable-free -main-file-name foo.cpp -mrelocation-model static -mdisable-fp-elim -mconstructor-aliases -munwind-tables -target-cpu x86-64 -v -resource-dir /space/bcowe/llvm-2.7-inprogress/Release/lib/clang/1.1 -fmessage-length 209 -fexceptions -fgnu-runtime -fdiagnostics-show-option -fcolor-diagnostics -o /tmp/cc-OL4RBh.s -x c++ foo.cpp 1. parser at end of file 2. foo.cpp:4:1: LLVM IR generation of declaration 'copy' 3. foo.cpp:4:1: Generating code for declaration 'copy' 4. foo.cpp:4:44: LLVM IR generation of compound statement ('{}') clang: error: compiler command failed due to signal 6 (use -v to see invocation) bcowe$ -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Fri Feb 26 13:11:19 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Fri, 26 Feb 2010 13:11:19 -0600 (CST) Subject: [LLVMbugs] [Bug 6438] New: many functions that call SelectionDAG::ComputeMaskedBits are broken with respect to vectors Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6438 Summary: many functions that call SelectionDAG::ComputeMaskedBits are broken with respect to vectors Product: libraries Version: trunk Platform: PC OS/Version: Windows NT Status: NEW Severity: enhancement Priority: P5 Component: Common Code Generator Code AssignedTo: unassignedbugs at nondot.org ReportedBy: micah.villmow at amd.com CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4327) --> (http://llvm.org/bugs/attachment.cgi?id=4327) bitcode that causes issue There are plenty of functions that are failing the following assertion when using vectors: assert(BitWidth == Op.getValueType().getScalarType().getSizeInBits() && "Mask size mismatches value type size!"); The reason is that the assertion uses getValueType().getScalarType().getSizeInBits() and when creating the values, the calling function only uses getValueType().getSizeInBits(). This works fine for scalar architectures, but breaks when a native vector type is supported and these functions are called. I'll attach a patch on Monday. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Fri Feb 26 16:56:41 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Fri, 26 Feb 2010 16:56:41 -0600 (CST) Subject: [LLVMbugs] [Bug 6432] bogus error on huge float val In-Reply-To: References: Message-ID: <20100226225641.915112A6C124@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6432 John McCall changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #3 from John McCall 2010-02-26 16:56:41 CST --- Okay, considering that part NTBF until it breaks something irrevocably. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Fri Feb 26 18:08:45 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Fri, 26 Feb 2010 18:08:45 -0600 (CST) Subject: [LLVMbugs] [Bug 6414] ipsccp non-deterministically generates wrong code In-Reply-To: References: Message-ID: <20100227000845.25B482A6C12D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6414 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution| |FIXED --- Comment #17 from Chris Lattner 2010-02-26 18:08:44 CST --- Fixed here: http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20100222/096945.html Thanks a lot for the analysis Duncan. This was behaving in a completely deterministic way for me, so I *really* appreciate it. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Fri Feb 26 18:25:46 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Fri, 26 Feb 2010 18:25:46 -0600 (CST) Subject: [LLVMbugs] [Bug 6413] crash with -fsyntax-only multiple virtual bases In-Reply-To: References: Message-ID: <20100227002546.A44512A6C12E@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6413 Douglas Gregor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #2 from Douglas Gregor 2010-02-26 18:25:46 CST --- Fixed in r97291. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Sat Feb 27 00:02:28 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sat, 27 Feb 2010 00:02:28 -0600 (CST) Subject: [LLVMbugs] [Bug 6439] New: Backend crash involving vectors in structures Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6439 Summary: Backend crash involving vectors in structures Product: libraries Version: trunk Platform: PC OS/Version: MacOS X Status: NEW Severity: normal Priority: P5 Component: Backend: PowerPC AssignedTo: unassignedbugs at nondot.org ReportedBy: arplynn at gmail.com CC: llvmbugs at cs.uiuc.edu The following fragment: %struct = type { <4 x float> } define %struct @fragment() nounwind readnone { entry: %res0 = insertvalue %struct {<4 x float> undef}, <4 x float> undef, 0 ret %struct %res0 } will crash the PowerPC backend. UNREACHABLE executed! 0 llc 0x00000001009cfa02 char const* std::__find(char const*, char const*, char const&, std::random_access_iterator_tag) + 674 1 llc 0x00000001009cfee4 char const* std::__find(char const*, char const*, char const&, std::random_access_iterator_tag) + 1924 2 libSystem.B.dylib 0x00007fff85ddbeaa _sigtramp + 26 3 libSystem.B.dylib 0xffffffff00e106d2 _sigtramp + 2063812674 4 llc 0x00000001009b341d llvm::cl::opt >::~opt() + 38077 5 llc 0x0000000100520c4c llvm::X8664_ELFTargetObjectFile::~X8664_ELFTargetObjectFile() + 1756 6 llc 0x0000000100358684 llvm::PPCHazardRecognizer970::~PPCHazardRecognizer970() + 187796 7 llc 0x000000010066c941 llvm::APInt::getHighBitsSet(unsigned int, unsigned int) + 291793 8 llc 0x000000010063a26c llvm::APInt::getHighBitsSet(unsigned int, unsigned int) + 85244 9 llc 0x0000000100676f2e llvm::TargetLowering::getNumRegisters(llvm::LLVMContext&, llvm::EVT) const + 14846 10 llc 0x0000000100678793 llvm::TargetLowering::getNumRegisters(llvm::LLVMContext&, llvm::EVT) const + 21091 11 llc 0x0000000100679418 llvm::TargetLowering::getNumRegisters(llvm::LLVMContext&, llvm::EVT) const + 24296 12 llc 0x0000000100333c79 llvm::PPCHazardRecognizer970::~PPCHazardRecognizer970() + 37769 13 llc 0x000000010071204e llvm::MachineFunctionAnalysis::doInitialization(llvm::Module&) + 62 14 llc 0x000000010096456d llvm::PassNameParser::passRegistered(llvm::PassInfo const*) + 22765 15 llc 0x0000000100964744 llvm::PassNameParser::passRegistered(llvm::PassInfo const*) + 23236 16 llc 0x0000000100964906 llvm::PassNameParser::passRegistered(llvm::PassInfo const*) + 23686 17 llc 0x0000000100037ed8 void llvm::cl::apply, llvm::cl::opt > >(llvm::cl::LocationClass const&, llvm::cl::opt >*) + 8936 18 llc 0x0000000100036d38 void llvm::cl::apply, llvm::cl::opt > >(llvm::cl::LocationClass const&, llvm::cl::opt >*) + 4424 Stack dump: 0. Program arguments: llc -march=ppc32 1. Running pass 'PowerPC DAG->DAG Pattern Instruction Selection' on function '@fragment' Abort trap -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Sat Feb 27 16:37:39 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sat, 27 Feb 2010 16:37:39 -0600 (CST) Subject: [LLVMbugs] [Bug 6440] New: LTO causes duplicate symbols during linking Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6440 Summary: LTO causes duplicate symbols during linking Product: tools Version: 1.0 Platform: Macintosh OS/Version: MacOS X Status: NEW Severity: normal Priority: P5 Component: lto AssignedTo: unassignedbugs at nondot.org ReportedBy: g.teunis at gmail.com CC: llvmbugs at cs.uiuc.edu I've read a lot of these reports online, causes users to disable LTO all together. Disabling LTO directly fixes the problem. Using XCode 3.2 (release version) on OSX 10.6 Steps to reproduce: 1. Enable Clang LLVM 1.0 in Xcode for the project 2. Enable Link-time optimization 3. Build project Results: ld: duplicate symbol _OBJC_IVAR_$_NZBqueue.nzbQueue in /tmp/lto.o and /Users/gerteunis/Documents/NZBVortex/build/NZBVortex.build/Release/NZBVortex.build/Objects-normal/x86_64/NZBqueue.o Expected: Correct build results (like non-LTO does) -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Sat Feb 27 17:57:33 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sat, 27 Feb 2010 17:57:33 -0600 (CST) Subject: [LLVMbugs] [Bug 6440] LTO causes duplicate symbols during linking In-Reply-To: References: Message-ID: <20100227235733.DCDC02A6C124@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6440 Anton Korobeynikov changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID --- Comment #4 from Anton Korobeynikov 2010-02-27 17:57:33 CST --- It's not possible to build your project. Please reopen when/if you will have something the bug can be reproduced with. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Sun Feb 28 09:34:21 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 28 Feb 2010 09:34:21 -0600 (CST) Subject: [LLVMbugs] [Bug 6441] New: Assertion failed: (!RD->getNumBases() && "FIXME: Handle zero-initializing structs with bases and " "pointers to data members.") Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6441 Summary: Assertion failed: (!RD->getNumBases() && "FIXME: Handle zero-initializing structs with bases and " "pointers to data members.") Product: clang Version: trunk Platform: Other OS/Version: FreeBSD Status: NEW Severity: normal Priority: P5 Component: -New Bugs AssignedTo: unassignedclangbugs at nondot.org ReportedBy: hinokind at gmail.com CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4333) --> (http://llvm.org/bugs/attachment.cgi?id=4333) testcase $ cat assert10.cc typedef struct system_variables SV; class foo { foo(const char *name_arg, void* func= __null) { } }; class bar :public foo { public: bar(const char *name_arg, void* func= __null) :foo(name_arg,func) { } }; class foobar :public bar { public: long SV::*offset; foobar(char *name_arg, long SV::*offset_arg) :bar(name_arg) { } }; struct system_variables { long auto_increment_increment; }; foobar whatever("auto_increment_increment", &SV::auto_increment_increment); $ clang assert10.cc Assertion failed: (!RD->getNumBases() && "FIXME: Handle zero-initializing structs with bases and " "pointers to data members."), function EmitNullConstant, file CGExprConstant.cpp, line 1002. Stack dump: 0. Program arguments: /usr/local/bin/clang -cc1 -triple x86_64-unknown-freebsd8.0 -S -disable-free -main-file-name assert10.cc -mrelocation-model static -mdisable-fp-elim -mconstructor-aliases -munwind-tables -target-cpu x86-64 -resource-dir /usr/local/lib/clang/1.1 -fmessage-length 157 -fexceptions -fgnu-runtime -fdiagnostics-show-option -fcolor-diagnostics -o /tmp/cc-x8ke7w.s -x c++ assert10.cc 1. parser at end of file 2. assert10.cc:18:8: LLVM IR generation of declaration 'whatever' 3. assert10.cc:18:8: Generating code for declaration 'whatever' clang: error: compiler command failed due to signal 6 (use -v to see invocation) $ clang --version clang version 1.1 (trunk 97399) Target: x86_64-unknown-freebsd8.0 Thread model: posix -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Sun Feb 28 09:42:48 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 28 Feb 2010 09:42:48 -0600 (CST) Subject: [LLVMbugs] [Bug 6442] New: Assertion failed: (Tok.is(tok::l_brace)) Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6442 Summary: Assertion failed: (Tok.is(tok::l_brace)) Product: clang Version: trunk Platform: Other OS/Version: FreeBSD Status: NEW Severity: normal Priority: P5 Component: -New Bugs AssignedTo: unassignedclangbugs at nondot.org ReportedBy: hinokind at gmail.com CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4334) --> (http://llvm.org/bugs/attachment.cgi?id=4334) testcase $ cat assert11.cc foo(): $ clang assert11.cc <...> Assertion failed: (Tok.is(tok::l_brace)), function ParseFunctionStatementBody, file ParseStmt.cpp, line 1422. Stack dump: 0. Program arguments: /usr/local/bin/clang -cc1 -triple x86_64-unknown-freebsd8.0 -S -disable-free -main-file-name assert11.cc -mrelocation-model static -mdisable-fp-elim -mconstructor-aliases -munwind-tables -target-cpu x86-64 -resource-dir /usr/local/lib/clang/1.1 -fmessage-length 157 -fexceptions -fgnu-runtime -fdiagnostics-show-option -fcolor-diagnostics -o /tmp/cc-lLvuPn.s -x c++ assert11.cc 1. parser at end of file clang: error: compiler command failed due to signal 6 (use -v to see invocation) $ clang --version clang version 1.1 (trunk 97399) Target: x86_64-unknown-freebsd8.0 Thread model: posix -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Sun Feb 28 12:19:01 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 28 Feb 2010 12:19:01 -0600 (CST) Subject: [LLVMbugs] [Bug 6423] Improve 'missing ;' error In-Reply-To: References: Message-ID: <20100228181901.BCA202A6C12D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6423 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Chris Lattner 2010-02-28 12:19:01 CST --- Implemented here: http://lists.cs.uiuc.edu/pipermail/cfe-commits/Week-of-Mon-20100222/028013.html -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Sun Feb 28 12:20:26 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 28 Feb 2010 12:20:26 -0600 (CST) Subject: [LLVMbugs] [Bug 4460] [Recovery] Poor diagnostics for missing '; ' prior to template declaration In-Reply-To: References: Message-ID: <20100228182026.0F64C2A6C12D@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=4460 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Chris Lattner 2010-02-28 12:20:25 CST --- We now produce: t.cc:1:34: error: expected ';' after struct template struct A { } ^ ; -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Sun Feb 28 12:31:39 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 28 Feb 2010 12:31:39 -0600 (CST) Subject: [LLVMbugs] [Bug 6428] G++ warns about this, we don't (string literal -> char* conversion) In-Reply-To: References: Message-ID: <20100228183139.E5B872A6C124@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6428 Douglas Gregor changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Douglas Gregor 2010-02-28 12:31:39 CST --- Fixed in r97404. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Sun Feb 28 12:55:39 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 28 Feb 2010 12:55:39 -0600 (CST) Subject: [LLVMbugs] [Bug 2507] Anders-AA returns wrong mod/ref info for external function call In-Reply-To: References: Message-ID: <20100228185539.A466C2A6C12C@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2507 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |LATER --- Comment #2 from Chris Lattner 2010-02-28 12:55:39 CST --- AndersAA is not maintained and may be removed in 2.8, there is no need to track individual bugs. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Sun Feb 28 12:56:36 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 28 Feb 2010 12:56:36 -0600 (CST) Subject: [LLVMbugs] [Bug 6439] Backend crash involving vectors in structures In-Reply-To: References: Message-ID: <20100228185636.2DBA12A6C124@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=6439 Chris Lattner changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |DUPLICATE --- Comment #1 from Chris Lattner 2010-02-28 12:56:35 CST --- It wasn't obvious to me at first, but this is a dupe of 2660. If you pass -mcpu=g5 the code will be accepted because the vector registers become available. In non-altivec cpus this has to lower the vector elements to multiple different return values which aren't supported yet on ppc. *** This bug has been marked as a duplicate of bug 2660 *** -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Sun Feb 28 14:20:33 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 28 Feb 2010 14:20:33 -0600 (CST) Subject: [LLVMbugs] [Bug 6443] New: Unknown mismatch!; UNREACHABLE executed at SelectionDAGBuilder.cpp:345! Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6443 Summary: Unknown mismatch!; UNREACHABLE executed at SelectionDAGBuilder.cpp:345! Product: libraries Version: trunk Platform: Other OS/Version: FreeBSD Status: NEW Severity: normal Priority: P5 Component: Common Code Generator Code AssignedTo: unassignedbugs at nondot.org ReportedBy: hinokind at gmail.com CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4336) --> (http://llvm.org/bugs/attachment.cgi?id=4336) testcase $ llc unreach3.bc Unknown mismatch! UNREACHABLE executed at SelectionDAGBuilder.cpp:345! Stack dump: 0. Program arguments: llc unreach3.bc 1. Running pass 'X86 DAG->DAG Instruction Selection' on function '@unreach' Abort trap: 6 (core dumped) using r97409 $ llc --version Low Level Virtual Machine (http://llvm.org/): llvm version 2.7svn Optimized build with assertions. Built Feb 28 2010 (21:30:12). Host: x86_64-segfault-freebsd8.0 Host CPU: k8-sse3 ... Not sure if this is needed but: $ cat unreach3.c void unreach() { float foo; __asm( "movq (%0), %%mm0" :"=&r"(foo)); } -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Sun Feb 28 15:08:16 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 28 Feb 2010 15:08:16 -0600 (CST) Subject: [LLVMbugs] [Bug 6444] New: Alpha Backend fails to compile _floatdisf with internal compiler error. Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6444 Summary: Alpha Backend fails to compile _floatdisf with internal compiler error. Product: libraries Version: 2.6 Platform: DEC OS/Version: Linux Status: NEW Severity: normal Priority: P5 Component: Backend: Alpha AssignedTo: unassignedbugs at nondot.org ReportedBy: mattst88 at gmail.com CC: llvmbugs at cs.uiuc.edu Created an attachment (id=4337) --> (http://llvm.org/bugs/attachment.cgi?id=4337) LLVM-gcc frontend compile failure log -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Sun Feb 28 16:59:13 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 28 Feb 2010 16:59:13 -0600 (CST) Subject: [LLVMbugs] [Bug 2853] __gxx_personality_v0 causes overflow in R_X86_64_PC32 relocation In-Reply-To: References: Message-ID: <20100228225913.160DD2A6C12F@llvm.org> http://llvm.org/bugs/show_bug.cgi?id=2853 Anton Korobeynikov changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED --- Comment #16 from Anton Korobeynikov 2010-02-28 16:59:12 CST --- Ok, marking as fixed then. Most probably due to work in PR5004. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla-daemon at llvm.org Sun Feb 28 19:02:18 2010 From: bugzilla-daemon at llvm.org (bugzilla-daemon at llvm.org) Date: Sun, 28 Feb 2010 19:02:18 -0600 (CST) Subject: [LLVMbugs] [Bug 6446] New: Support -nostdinc++ Message-ID: http://llvm.org/bugs/show_bug.cgi?id=6446 Summary: Support -nostdinc++ Product: clang Version: trunk Platform: PC OS/Version: All Status: NEW Severity: enhancement Priority: P5 Component: Driver AssignedTo: unassignedclangbugs at nondot.org ReportedBy: dgregor at apple.com CC: llvmbugs at cs.uiuc.edu We already support -nostdinc; we should also support -nostdinc++, which suppresses the search for C++ headers (without affecting the search for C and system headers). -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.