[llvm-commits] [poolalloc] r113340 - in /poolalloc/trunk/test/dsa/var_arg: basic_32.ll basic_64.ll
Arushi Aggarwal
aggarwa4 at illinois.edu
Tue Sep 7 21:08:25 PDT 2010
Author: aggarwa4
Date: Tue Sep 7 23:08:25 2010
New Revision: 113340
URL: http://llvm.org/viewvc/llvm-project?rev=113340&view=rev
Log:
Fixed syntax for type testing
Modified:
poolalloc/trunk/test/dsa/var_arg/basic_32.ll
poolalloc/trunk/test/dsa/var_arg/basic_64.ll
Modified: poolalloc/trunk/test/dsa/var_arg/basic_32.ll
URL: http://llvm.org/viewvc/llvm-project/poolalloc/trunk/test/dsa/var_arg/basic_32.ll?rev=113340&r1=113339&r2=113340&view=diff
==============================================================================
--- poolalloc/trunk/test/dsa/var_arg/basic_32.ll (original)
+++ poolalloc/trunk/test/dsa/var_arg/basic_32.ll Tue Sep 7 23:08:25 2010
@@ -12,9 +12,9 @@
; Don't propagate the VAStart flag to children...
;RUN: dsaopt %s -dsa-local -analyze -verify-flags "get:ap:0-V"
; On 32-bit, VAStart node should point to an array of the arguments
-;RUN: dsaopt %s -dsa-local -analyze -check-type "get:ap:0,FoldedVOIDArray"
+;RUN: dsaopt %s -dsa-local -analyze -check-type=get:ap:0,FoldedVOIDArray
; And the argument node should be of the proper type (in this case an i32)
-;RUN: dsaopt %s -dsa-local -analyze -check-type "get:ap:0:0,0:i32"
+;RUN: dsaopt %s -dsa-local -analyze -check-type=get:ap:0:0,0:i32
; The argument should be ref'd, but not mod'd
;RUN: dsaopt %s -dsa-local -analyze --verify-flags "get:ap:0:0+R-M"
Modified: poolalloc/trunk/test/dsa/var_arg/basic_64.ll
URL: http://llvm.org/viewvc/llvm-project/poolalloc/trunk/test/dsa/var_arg/basic_64.ll?rev=113340&r1=113339&r2=113340&view=diff
==============================================================================
--- poolalloc/trunk/test/dsa/var_arg/basic_64.ll (original)
+++ poolalloc/trunk/test/dsa/var_arg/basic_64.ll Tue Sep 7 23:08:25 2010
@@ -13,13 +13,13 @@
;RUN: dsaopt %s -dsa-local -analyze -verify-flags "get:ap:8-V"
;RUN: dsaopt %s -dsa-local -analyze -verify-flags "get:ap:16-V"
; On 64-bit, VAStart node should be a struct pointing to an array of the arguments
-;RUN: dsaopt %s -dsa-local -analyze -check-type "get:ap:8,FoldedVOIDArray"
+;RUN: dsaopt %s -dsa-local -analyze -check-type=get:ap:8,FoldedVOIDArray
; Both offsets 8 and 16 point to the array as a simplification.
; Verify that these are indeed the same node.
;RUN: dsaopt %s -dsa-local -analyze -check-same-node \
;RUN: "get:ap:8,get:ap:16"
; And the argument node should be of the proper type (in this case an i32)
-;RUN: dsaopt %s -dsa-local -analyze -check-type "get:ap:8:0,0:i32"
+;RUN: dsaopt %s -dsa-local -analyze -check-type=get:ap:8:0,0:i32
; The argument should be ref'd, but not mod'd
;RUN: dsaopt %s -dsa-local -analyze --verify-flags "get:ap:8:0+R-M"
More information about the llvm-commits
mailing list