diff options
author | Chris Lattner <sabre@nondot.org> | 2002-08-22 16:04:03 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-08-22 16:04:03 +0000 |
commit | 6458c31c6706edc9ac09de8f5d8c88dc358816cc (patch) | |
tree | 2cfabfb5e49b4cf142742979f661f9713ce377e4 /test/Feature/recursivetype.ll | |
parent | abfb0b5e70d26859cd06fb005eb82ca91e276cd5 (diff) |
Covnert tests to not use indexed load/stores
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3454 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Feature/recursivetype.ll')
-rw-r--r-- | test/Feature/recursivetype.ll | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/Feature/recursivetype.ll b/test/Feature/recursivetype.ll index 60ffc510d5..9e16e2c360 100644 --- a/test/Feature/recursivetype.ll +++ b/test/Feature/recursivetype.ll @@ -88,7 +88,8 @@ bb3: ret %list* null bb4: - %reg111 = load %list* %reg115, uint 0, ubyte 1 ;;<int> + %idx = getelementptr %list* %reg115, uint 0, ubyte 1 ;;<int> + %reg111 = load int* %idx %cond1013 = setne int %reg111, %Data ;;<bool> br bool %cond1013, label %bb6, label %bb5 @@ -96,6 +97,7 @@ bb5: ret %list* %reg115 bb6: - %reg116 = load %list* %reg115, uint 0, ubyte 0 ;;<%list*> + %idx2 = getelementptr %list* %reg115, uint 0, ubyte 0 ;;<%list*> + %reg116 = load %list** %idx2 br label %bb2 end |