diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2010-11-09 03:43:49 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2010-11-09 03:43:49 +0000 |
commit | 46728793a250f93be0f1e67cebb6732cde800b4e (patch) | |
tree | 170c2ca770a35baf73d96bda96c960f5c909d613 | |
parent | b2d57ae3086bb87216c76f89400f5935c3b47f86 (diff) |
Fix the test for Release.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@118483 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/vla.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/vla.c b/test/CodeGen/vla.c index f1f5a70a5e..e5114a5b0d 100644 --- a/test/CodeGen/vla.c +++ b/test/CodeGen/vla.c @@ -89,7 +89,7 @@ int test2(int n) // CHECK: define double @test_PR8567 double test_PR8567(int n, double (*p)[n][5]) { // CHECK: store [[vla_type:.*]] %p, - // CHECK: load i32* %n + // CHECK: load i32* // CHECK-NEXT: mul i32 40 // CHECK-NEXT: [[byte_idx:%.*]] = mul i32 1 // CHECK-NEXT: [[tmp_1:%.*]] = load [[vla_type]]* |