Brian Gaeke 
							
						 
					 
					
						
						
							
						
						e9f6f2c049 
					 
					
						
						
							
							Update comment at head of file. Also fix C 'typedef struct' nonsense I  
						
						... 
						
						
						
						inadvertently left in here.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11988  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2004-02-29 06:33:28 +00:00 
						 
				 
			
				
					
						
							
							
								Brian Gaeke 
							
						 
					 
					
						
						
							
						
						620ee02353 
					 
					
						
						
							
							Add more architectures, and ELF64 stuff.  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11985  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2004-02-29 06:30:25 +00:00 
						 
				 
			
				
					
						
							
							
								Brian Gaeke 
							
						 
					 
					
						
						
							
						
						757c1f9d87 
					 
					
						
						
							
							Fix my sloppiness  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11968  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2004-02-28 22:06:03 +00:00 
						 
				 
			
				
					
						
							
							
								Brian Gaeke 
							
						 
					 
					
						
						
							
						
						6c39a42b5c 
					 
					
						
						
							
							ELF constants and data structures.  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11945  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2004-02-28 06:26:20 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						1cd4c7294c 
					 
					
						
						
							
							Make sure that at least one virtual method is defined in a .cpp file to avoid  
						
						... 
						
						
						
						having the compiler emit RTTI and vtables to EVERY translation unit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11871  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2004-02-26 07:24:18 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						7c78afefe9 
					 
					
						
						
							
							Fix a bug in the densemap that was killing the local allocator, and probably  
						
						... 
						
						
						
						other clients.  The problem is that the nullVal member was left to the default
constructor to initialize, which for int's does nothing (ie, leaves it unspecified).
To get a zero value, we must use T().  It's C++ wonderful? :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11867  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2004-02-26 05:00:15 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						00fa65be83 
					 
					
						
						
							
							Fix typeo.  grow() cannot shrink storage.  clear() should really nuke storage  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11865  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2004-02-26 04:07:12 +00:00 
						 
				 
			
				
					
						
							
							
								Alkis Evlogimenos 
							
						 
					 
					
						
						
							
						
						4d0d864be3 
					 
					
						
						
							
							Add DenseMap template and actually use it for for mapping virtual regs  
						
						... 
						
						
						
						to objects.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11840  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2004-02-25 21:55:45 +00:00 
						 
				 
			
				
					
						
							
							
								Brian Gaeke 
							
						 
					 
					
						
						
							
						
						bb92f6fbf2 
					 
					
						
						
							
							Cygwin defines log2 as a macro. Undef it here IFF it has already been defined,  
						
						... 
						
						
						
						so that we always get the inline function instead. Remember, kids, like it says
in the GCC manual, "An Inline Function is As Fast As a Macro."
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11815  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2004-02-25 01:53:45 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						7b3d73b7ec 
					 
					
						
						
							
							Use the new LLVM is_class template instead of the boost one, allowing us to  
						
						... 
						
						
						
						remove our dependency on boost!  Thanks to Reid Spencer for making this possible!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11785  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2004-02-24 03:50:05 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						5c4d53a4d1 
					 
					
						
						
							
							Check in a new type_traits header which provides the mysterious is_class  
						
						... 
						
						
						
						template.  Thanks go out to Reid Spencer for skillfully extracting this
from boost!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11784  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2004-02-24 03:49:29 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						c50879dfe6 
					 
					
						
						
							
							Noone cares about similarity to boost  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11783  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2004-02-24 03:47:25 +00:00 
						 
				 
			
				
					
						
							
							
								Brian Gaeke 
							
						 
					 
					
						
						
							
						
						95ee9bd81f 
					 
					
						
						
							
							DataTypes.h is now output from configure, and shortened  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11778  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2004-02-23 22:07:26 +00:00 
						 
				 
			
				
					
						
							
							
								Brian Gaeke 
							
						 
					 
					
						
						
							
						
						a6eb7c19a1 
					 
					
						
						
							
							ThreadSupport.h is now output from configure.  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11770  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2004-02-23 21:30:29 +00:00 
						 
				 
			
				
					
						
							
							
								Brian Gaeke 
							
						 
					 
					
						
						
							
						
						cbc20b451d 
					 
					
						
						
							
							Renamed to hash_set.in; move to using autoconf substitution tags.  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11765  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2004-02-23 18:56:36 +00:00 
						 
				 
			
				
					
						
							
							
								Brian Gaeke 
							
						 
					 
					
						
						
							
						
						6cd52446fa 
					 
					
						
						
							
							Renamed to hash_map.in; move to using autoconf substitution tags.  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11764  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2004-02-23 18:56:35 +00:00 
						 
				 
			
				
					
						
							
							
								Brian Gaeke 
							
						 
					 
					
						
						
							
						
						c134395628 
					 
					
						
						
							
							Renamed from include/Support/iterator. Doxygenify comments; add autoconf substitution tags.  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11754  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2004-02-23 18:16:10 +00:00 
						 
				 
			
				
					
						
							
							
								Brian Gaeke 
							
						 
					 
					
						
						
							
						
						0e67d4cfe2 
					 
					
						
						
							
							Replaced by include/Support/iterator.in.  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11753  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2004-02-23 18:16:10 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						9717ee9e6c 
					 
					
						
						
							
							Add a new function  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11630  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2004-02-19 20:03:08 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						f5c8146a7c 
					 
					
						
						
							
							Change the order of the arguments to the ctor, allowing us to make the boolean default to true  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11592  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2004-02-18 20:20:52 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						f1e3285f3a 
					 
					
						
						
							
							Move a helper class out of bugpoint to here.  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11582  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2004-02-18 17:16:17 +00:00 
						 
				 
			
				
					
						
							
							
								Alkis Evlogimenos 
							
						 
					 
					
						
						
							
						
						bc79471be1 
					 
					
						
						
							
							Add next() and prior() iterator utility functions. Unlike std::advance  
						
						... 
						
						
						
						they do not modify the passed iterator but return a copy.
next(myIt) returns copy of myIt incremented once
next(myIt, n) returns copy of myIt incremented n times
prior(myIt) returns copy of myIt decremented once
prior(myIt, n) returns copy of myIt decremented n times
While at it remove obsolete implementation of mapped_iterator.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11429  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2004-02-14 01:17:28 +00:00 
						 
				 
			
				
					
						
							
							
								Brian Gaeke 
							
						 
					 
					
						
						
							
						
						a0031cc08c 
					 
					
						
						
							
							Update the example here in the header file.  
						
						... 
						
						
						
						I don't know about you guys, but I rarely read the .html manuals :-)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11366  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2004-02-13 04:49:04 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						6a6dd6f487 
					 
					
						
						
							
							If a node has more than 64 outgoing edges, make the edges go from the 'truncated' block,  
						
						... 
						
						
						
						instead of dropping them entirely.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11334  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2004-02-11 20:44:17 +00:00 
						 
				 
			
				
					
						
							
							
								Alkis Evlogimenos 
							
						 
					 
					
						
						
							
						
						71be6db3ef 
					 
					
						
						
							
							Add global methods that prevent us from using ilist::iterators as  
						
						... 
						
						
						
						random access iterators.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11248  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2004-02-09 22:40:50 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						2cca3008e8 
					 
					
						
						
							
							One of the 'annoying' things about ilists is that the iterators don't behave  
						
						... 
						
						
						
						quite the same as for non-intrusive lists of pointers to nodes.  To support
transitioning code bases, add a new 'compatibility' iterator.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11172  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2004-02-08 00:51:31 +00:00 
						 
				 
			
				
					
						
							
							
								Brian Gaeke 
							
						 
					 
					
						
						
							
						
						5616dc9ea6 
					 
					
						
						
							
							Use autoconf answers from config.h (FIXME, should autoconf this file  
						
						... 
						
						
						
						directly instead).
Fix LockHolder/MutexLocker typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11156  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2004-02-06 22:33:17 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						a55e040623 
					 
					
						
						
							
							fix copy-and-pasto  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10907  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2004-01-17 22:48:06 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						440f87eea2 
					 
					
						
						
							
							Revision of Brian's threading support library to be a bit more generic and  
						
						... 
						
						
						
						platform independent.  This code is completely untested (but never used),
and needs autoconf support for detecting pthreads, but it's a start, and
deletes two emails from my inbox.  :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10906  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2004-01-17 19:54:29 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						88fc1b0a6f 
					 
					
						
						
							
							Remove ENDIAN_* support.  LLVM does not need it anymore.  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10872  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2004-01-15 06:13:58 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						d924edb845 
					 
					
						
						
							
							add support for -- for symmetry  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10865  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2004-01-14 23:37:22 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						9e26027b82 
					 
					
						
						
							
							* Add a new helper progress method  
						
						... 
						
						
						
						* Make sure that the user sees the 100% mark
* Don't bother printing out X.0%, just print out X%
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10672  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2003-12-31 10:20:38 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						7a312bc102 
					 
					
						
						
							
							add new function  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10665  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2003-12-31 06:16:02 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						cf902777e9 
					 
					
						
						
							
							clarify comments  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10663  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2003-12-31 05:45:16 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						a2e9363617 
					 
					
						
						
							
							New class, useful for command-line interactive programs.  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10662  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2003-12-31 05:40:02 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						a7e2321a65 
					 
					
						
						
							
							doxygenify  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10661  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2003-12-31 04:42:00 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						9c4c66e70e 
					 
					
						
						
							
							Add new function  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10648  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2003-12-30 07:35:47 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						9899ae3ae8 
					 
					
						
						
							
							Further revisions of the FDHandle idea.  In this version we use ownership  
						
						... 
						
						
						
						semantics that are the same as those used by std::auto_ptr.  This allows
copying of FDHandle's, but copying transfers ownership.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10646  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2003-12-30 02:45:16 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						9b448b703f 
					 
					
						
						
							
							Add trivial exception specs to produce better code since the methods cannot  
						
						... 
						
						
						
						be inlined.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10643  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2003-12-29 21:43:58 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						2d6481cc2a 
					 
					
						
						
							
							Factor FDHandle out of the bytecode reader into the FileUtilities.h support  
						
						... 
						
						
						
						routines.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10642  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2003-12-29 21:35:05 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						9fc8a3ec2e 
					 
					
						
						
							
							add new function  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10638  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2003-12-29 05:06:38 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						cfde00b3d7 
					 
					
						
						
							
							This header is dead  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10470  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2003-12-15 06:39:18 +00:00 
						 
				 
			
				
					
						
							
							
								Brian Gaeke 
							
						 
					 
					
						
						
							
						
						59e47e3ee1 
					 
					
						
						
							
							Lock abstraction, introduced with a view toward making the JIT thread-safe.  
						
						... 
						
						
						
						Eventually.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10284  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2003-12-01 21:33:31 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						d2aa7b8ee7 
					 
					
						
						
							
							Hrm, how could this compile?  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10263  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2003-11-29 19:55:02 +00:00 
						 
				 
			
				
					
						
							
							
								Misha Brukman 
							
						 
					 
					
						
						
							
						
						a140b3c367 
					 
					
						
						
							
							Expose functionality to query if a file is an ELF shared object.  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10194  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2003-11-24 05:28:39 +00:00 
						 
				 
			
				
					
						
							
							
								Brian Gaeke 
							
						 
					 
					
						
						
							
						
						9bb2188b0e 
					 
					
						
						
							
							A better way to get std::pair into the compiler's little, walnut-sized brain.  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10174  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2003-11-23 03:50:31 +00:00 
						 
				 
			
				
					
						
							
							
								Brian Gaeke 
							
						 
					 
					
						
						
							
						
						6de98f242a 
					 
					
						
						
							
							This is a hack to make this file compile under g++-3.0.x;  
						
						... 
						
						
						
						otherwise it can't decide what std::pair is. It seemed relatively
harmless.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10173  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2003-11-23 00:55:27 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						825b02d5ee 
					 
					
						
						
							
							Fix copy-and-pasteo  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10049  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2003-11-17 01:07:58 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						8b70b78ba4 
					 
					
						
						
							
							Fixes for PR114: Thanks to Reid Spencer!  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10029  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2003-11-16 20:21:15 +00:00 
						 
				 
			
				
					
						
							
							
								Chris Lattner 
							
						 
					 
					
						
						
							
						
						a3f5f80f2b 
					 
					
						
						
							
							Remove needless dependence on boost  
						
						... 
						
						
						
						git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9961  91177308-0d34-0410-b5e6-96231b3b80d8 
						
						
					 
					
						2003-11-13 04:11:30 +00:00