diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2015-05-27 18:47:56 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2015-05-27 18:47:56 +0000 |
commit | 5e20cdd81c44a443562a09007668ffdf76c455af (patch) | |
tree | dbbd4047878da71c1a706e26ce05b4e7791b14cc /test/CodeGen/extern-inline.c | |
parent | d5f23b0b7528b5c3caed1ba14f897cc4aaa9e3c3 (diff) |
Notes
Diffstat (limited to 'test/CodeGen/extern-inline.c')
-rw-r--r-- | test/CodeGen/extern-inline.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/extern-inline.c b/test/CodeGen/extern-inline.c index 77cb270191a0e..2c0fde9f79bc8 100644 --- a/test/CodeGen/extern-inline.c +++ b/test/CodeGen/extern-inline.c @@ -8,7 +8,7 @@ extern inline int f(int a) {return a;} int g(void) {return f(0);} // CHECK: call i32 @f int f(int b) {return 1+b;} -// CHECK: load i32* %{{.*}} +// CHECK: load i32, i32* %{{.*}} // CHECK: add nsw i32 1, %{{.*}} int h(void) {return f(1);} // CHECK: call i32 @f @@ -18,8 +18,8 @@ extern inline int f2(int a, int b) {return a+b;} int g2(void) {return f2(0,1);} // CHECK: call i32 @f2 static int f2(int a, int b) {return a*b;} -// CHECK: load i32* %{{.*}} -// CHECK: load i32* %{{.*}} +// CHECK: load i32, i32* %{{.*}} +// CHECK: load i32, i32* %{{.*}} // CHECK: mul nsw i32 %{{.*}}, %{{.*}} int h2(void) {return f2(1,2);} // CHECK: call i32 @f2 |