- Oct 28, 2010
-
-
Rafael Espindola authored
Move the existing patching for undefined symbols so that all the patching is done in the same function. llvm-svn: 117570
-
Johnny Chen authored
If TestBase.expect() is passed an assert message, pass it along when delegating to TestBase.runCmd() to execute the debugger command. This will result in a more semantic assert message than just the command failed message like before: AssertionError: False is not True : Command 'thread list' returns successfully And now, we will have: AssertionError: False is not True : Process state is stopped due to breakpoint llvm-svn: 117569
-
Sean Callanan authored
logging for type importing, making errors much easier to diagnose. Also removed some Objective-C related logging. llvm-svn: 117568
-
John McCall authored
Part 2 of rdar://problem/8595231 llvm-svn: 117567
-
Devang Patel authored
llvm-svn: 117563
-
Johnny Chen authored
the breakpoint associated with the (filename, line_number) combo when an arrow is pointing to a source position using Emacs Grand Unified Debugger library to interact with lldb. The current implmentation is insufficient in that it only asks the breakpoint whether it is associated with a breakpoint resolver with FileLine type and whether it matches the (filename, line_number) combo. There are other breakpoint resolver types whose breakpoint locations can potentially match the (filename, line_number) combo. The BreakpointResolver, BreakpointResolverName, BreakpointResolverAddress, and BreakpointResolverFileLine classes have extra static classof methods to support LLVM style type inquiry through isa, cast, and dyn_cast. The Breakpoint class has an API method bool GetMatchingFileLine(...) which is invoked from CommandObjectBreak.cpp to implement the "breakpoint clear" command. llvm-svn: 117562
-
Devang Patel authored
llvm-svn: 117561
-
Chris Lattner authored
llvm-svn: 117560
-
Chris Lattner authored
llvm-svn: 117559
-
Bob Wilson authored
Also do some minor refactoring to reduce indentation. llvm-svn: 117558
-
Roman Divacky authored
Pointed out by Chris! llvm-svn: 117557
-
http://llvm.org/bugs/show_bug.cgi?id=8493Johnny Chen authored
File name "2010-10-19-14:10:49.059609" is non-portable. Do not use ':' in the pathname as it is not permitted on windows platforms. llvm-svn: 117556
-
Caroline Tice authored
to set a breakpoint. llvm-svn: 117555
-
http://llvm.org/bugs/show_bug.cgi?id=8493Johnny Chen authored
Fix http://llvm.org/bugs/show_bug.cgi?id=8493 File name "2010-10-19-14:10:49.059609" is non-portable. llvm-svn: 117554
-
Roman Divacky authored
llvm-svn: 117553
-
Duncan Sands authored
llvm-svn: 117552
-
Duncan Sands authored
a null pointer. llvm-svn: 117551
-
Douglas Gregor authored
timers to be dumped whenever the ASTUnit is destroyed. Instead, just print the time elapsed for each operation after we perform the operation. llvm-svn: 117550
-
Rafael Espindola authored
llvm-svn: 117548
-
Rafael Espindola authored
llvm-svn: 117547
-
Rafael Espindola authored
llvm-svn: 117546
-
Oscar Fuentes authored
UnitTests for building all the unit tests. llvm-svn: 117545
-
Rafael Espindola authored
llvm-svn: 117544
-
Rafael Espindola authored
llvm-svn: 117543
-
Argyrios Kyrtzidis authored
llvm-svn: 117541
-
Argyrios Kyrtzidis authored
Switch case IDs conflict between chained PCHs; since there is no need to be global, make them local to a decl. llvm-svn: 117540
-
John McCall authored
in the scope checker. With that done, turn an indirect goto into a protected scope into a hard error; otherwise IR generation has to start worrying about declarations not dominating their scopes, as exemplified in PR8473. If this really affects anyone, I can probably adjust this to only hard-error on possible indirect gotos into VLA scopes rather than arbitrary scopes. But we'll see how people cope with the aggressive change on the marginal feature. llvm-svn: 117539
-
Mikhail Glushenkov authored
llvm-svn: 117538
-
Argyrios Kyrtzidis authored
first one if the redeclaration comes from a friend decl. llvm-svn: 117537
-
Argyrios Kyrtzidis authored
meaning we need to rewrite its name lookup table in a chained PCH. llvm-svn: 117536
-
Argyrios Kyrtzidis authored
llvm-svn: 117535
-
Argyrios Kyrtzidis authored
llvm-svn: 117534
-
Argyrios Kyrtzidis authored
llvm-svn: 117533
-
John McCall authored
and it's too much trouble to push for. Fixes PR8478. llvm-svn: 117532
-
Evan Cheng authored
llvm-svn: 117531
-
Evan Cheng authored
I'll work with Jim, Owen, and Bill on an alternative testing strategy until the assembly parser is available. llvm-svn: 117530
-
NAKAMURA Takumi authored
test/Transforms/SimplifyLibCalls/floor.ll: Mark as XFAIL:win32 due to lack of nearbyintf on MSVC. [PR8466] llvm-svn: 117529
-
NAKAMURA Takumi authored
Thanks to Yuri Gribov and Vladimir Kirillov! *BSD(s) have environ(7) in CRT startup and cannot resolve "environ" at linking llvm.so. environ(7) is used inlib/System/Unix/Program.inc. llvm-svn: 117528
-
John McCall authored
attribute. Part of rdar://problem/8595231 llvm-svn: 117526
-
-