[ARM] Better OR's for MVE compares
[llvm-core.git] / test / Assembler / 2002-04-29-NameBinding.ll
blobc387c47ef93fc138e67c4b6e76c78363d3d9af9e
1 ; There should be NO references to the global v1.  The local v1 should
2 ; have all of the references!
4 ; Check by running globaldce, which will remove the constant if there are
5 ; no references to it!
6
7 ; RUN: opt < %s -globaldce -S | \
8 ; RUN:   not grep constant
10 ; RUN: verify-uselistorder %s
12 @v1 = internal constant i32 5           
14 define i32 @createtask() {
15         %v1 = alloca i32                ;; Alloca should have one use! 
16         %reg112 = load i32, i32* %v1         ;; This load should not use the global!
17         ret i32 %reg112