mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-03 14:21:30 +00:00 
			
		
		
		
	RUN: a RUN: b || true as "a && (b || true)" in Tcl mode, and as "(a && b) || true" in sh mode. Everyone seems to (quite reasonably) write tests assuming the Tcl behavior, so use that in sh mode too. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169441 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			10 lines
		
	
	
		
			197 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			197 B
		
	
	
	
		
			C
		
	
	
	
	
	
// This test should fail. lit used to interpret this as:
 | 
						|
//   (false && false) || true
 | 
						|
// instead of the intended
 | 
						|
//   false && (false || true
 | 
						|
//
 | 
						|
// RUN: false
 | 
						|
// RUN: false || true
 | 
						|
//
 | 
						|
// XFAIL: *
 |