diff options
author | Bill Wendling <isanbard@gmail.com> | 2012-03-16 23:37:23 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2012-03-16 23:37:23 +0000 |
commit | 2eb272931070b4294eb623611ed892ba3d828284 (patch) | |
tree | 390166dbe78ebd1aefdb89a1d2c7a3a568f80e95 | |
parent | 56a938ff85a444eb3d30d2634d92ce5b1f6fae56 (diff) |
Make the storing variable's name generic.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@152963 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGenCXX/2012-03-16-StoreAlign.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGenCXX/2012-03-16-StoreAlign.cpp b/test/CodeGenCXX/2012-03-16-StoreAlign.cpp index c2c7548c22..a6375f824a 100644 --- a/test/CodeGenCXX/2012-03-16-StoreAlign.cpp +++ b/test/CodeGenCXX/2012-03-16-StoreAlign.cpp @@ -28,7 +28,7 @@ struct Foo { }; // CHECK: @_ZZN3Foo19getPageSizeFromNameERK6LengthE10legalWidth = linkonce_odr global %struct.Length zeroinitializer, align 4 -// CHECK: store float %call, float* getelementptr inbounds (%struct.Length* @_ZZN3Foo19getPageSizeFromNameERK6LengthE10legalWidth, i32 0, i32 0), align 1 +// CHECK: store float %{{.*}}, float* getelementptr inbounds (%struct.Length* @_ZZN3Foo19getPageSizeFromNameERK6LengthE10legalWidth, i32 0, i32 0), align 1 bool bar(Length &b) { Foo f; |