56f64c14b7 
								
							 
						 
						
							
							
								
								fix rdar://8823139, a crash on a comment in a preprocessed .s file  
							
							... 
							
							
							
							that contains the ## operator.
llvm-svn: 122946 
							
						 
						
							2011-01-06 05:01:51 +00:00  
				
					
						
							
							
								 
						
							
								8fbe78f6fc 
								
							 
						 
						
							
							
								
								Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.  
							
							... 
							
							
							
							- This is designed to make it obvious that %clang_cc1 is a "test variable"
   which is substituted. It is '%clang_cc1' instead of '%clang -cc1' because it
   can be useful to redefine what gets run as 'clang -cc1' (for example, to set
   a default target).
llvm-svn: 91446 
							
						 
						
							2009-12-15 20:14:24 +00:00  
				
					
						
							
							
								 
						
							
								7c71b6b95b 
								
							 
						 
						
							
							
								
								Use '-FOO' 'BAR' instead of '-FOO=BAR' in tests.  
							
							... 
							
							
							
							llvm-svn: 90122 
							
						 
						
							2009-11-30 08:41:04 +00:00  
				
					
						
							
							
								 
						
							
								34546ce43d 
								
							 
						 
						
							
							
								
								Remove RUN: true lines.  
							
							... 
							
							
							
							llvm-svn: 86432 
							
						 
						
							2009-11-08 01:47:25 +00:00  
				
					
						
							
							
								 
						
							
								8b57697954 
								
							 
						 
						
							
							
								
								Eliminate &&s in tests.  
							
							... 
							
							
							
							- 'for i in $(find . -type f); do sed -e 's#\(RUN:.*[^ ]\) *&& *$#\1#g' $i | FileUpdate $i; done', for the curious.
llvm-svn: 86430 
							
						 
						
							2009-11-08 01:45:36 +00:00  
				
					
						
							
							
								 
						
							
								0e86b8675f 
								
							 
						 
						
							
							
								
								fix tests  
							
							... 
							
							
							
							llvm-svn: 85223 
							
						 
						
							2009-10-27 10:09:29 +00:00  
				
					
						
							
							
								 
						
							
								7cd5c818da 
								
							 
						 
						
							
							
								
								Convert Preprocessor Clang tests to FileCheck in regards to PR5307.  
							
							... 
							
							
							
							llvm-svn: 85201 
							
						 
						
							2009-10-27 03:47:36 +00:00  
				
					
						
							
							
								 
						
							
								11289f4280 
								
							 
						 
						
							
							
								
								Remove tabs, and whitespace cleanups.  
							
							... 
							
							
							
							llvm-svn: 81346 
							
						 
						
							2009-09-09 15:08:12 +00:00  
				
					
						
							
							
								 
						
							
								83bd8281e5 
								
							 
						 
						
							
							
								
								Fix a couple of bugs:  
							
							... 
							
							
							
							1. When we accept "#garbage" in asm-with-cpp mode, change the token kind
   of the # to unknown so that the preprocessor won't try to process it as
   a real #.  This fixes a crash on the attached example
2. Fix macro definition extents processing to handle #foo at the end of a
   macro to say the definition ends with the foo, not the #.
This is a follow-on fix to r72283, and rdar://6916026
llvm-svn: 72388 
							
						 
						
							2009-05-25 17:16:10 +00:00  
				
					
						
							
							
								 
						
							
								fc39bccd2b 
								
							 
						 
						
							
							
								
								fix this test to fail when the patch isn't applied.  
							
							... 
							
							
							
							llvm-svn: 72385 
							
						 
						
							2009-05-25 16:14:52 +00:00  
				
					
						
							
							
								 
						
							
								2d49c4f98d 
								
							 
						 
						
							
							
								
								Make sure an invalid concatentaion doesn't insert whitespace before  
							
							... 
							
							
							
							the RHS.  Fixes assembler-with-cpp issue reported on cfe-dev.
llvm-svn: 72370 
							
						 
						
							2009-05-24 19:25:46 +00:00  
				
					
						
							
							
								 
						
							
								0721c2c155 
								
							 
						 
						
							
							
								
								In assembler-with-cpp mode, don't error on '#' (stringize) operator applied to  
							
							... 
							
							
							
							non-argument names, pass the tokens through.
llvm-svn: 72283 
							
						 
						
							2009-05-22 21:35:34 +00:00  
				
					
						
							
							
								 
						
							
								98b100590d 
								
							 
						 
						
							
							
								
								fix rdar://6804322 by wiring up -fdollars-in-identifiers  
							
							... 
							
							
							
							with assembler-with-cpp mode.
llvm-svn: 69520 
							
						 
						
							2009-04-19 07:00:02 +00:00  
				
					
						
							
							
								 
						
							
								a45cf5b6b0 
								
							 
						 
						
							
							
								
								Rename clang to clang-cc.  
							
							... 
							
							
							
							Tests and drivers updated, still need to shuffle dirs.
llvm-svn: 67602 
							
						 
						
							2009-03-24 02:24:46 +00:00  
				
					
						
							
							
								 
						
							
								5030e5eabe 
								
							 
						 
						
							
							
								
								The individual pieces of an invalid paste as still candidates for expansion.  
							
							... 
							
							
							
							This matters in assembler mode, where this is silently allowed.
This fixes rdar://6709206.
llvm-svn: 67539 
							
						 
						
							2009-03-23 17:32:45 +00:00  
				
					
						
							
							
								 
						
							
								88c347443e 
								
							 
						 
						
							
							
								
								add tests for the various .S bugs I fixed on wednesday.  
							
							... 
							
							
							
							llvm-svn: 67381 
							
						 
						
							2009-03-20 16:28:22 +00:00  
				
					
						
							
							
								 
						
							
								c4867109f8 
								
							 
						 
						
							
							
								
								rename this test from .S to .c so that it gets run.  
							
							... 
							
							
							
							llvm-svn: 67380 
							
						 
						
							2009-03-20 16:16:49 +00:00