diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2013-12-22 00:07:40 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2013-12-22 00:07:40 +0000 | 
| commit | bfef399519ca9b8a4b4c6b563253bad7e0eeffe0 (patch) | |
| tree | df8df0b0067b381eab470a3b8f28d14a552a6340 /test/CodeGenCXX/fastcall.cpp | |
| parent | 6a0372513edbc473b538d2f724efac50405d6fef (diff) | |
Diffstat (limited to 'test/CodeGenCXX/fastcall.cpp')
| -rw-r--r-- | test/CodeGenCXX/fastcall.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/test/CodeGenCXX/fastcall.cpp b/test/CodeGenCXX/fastcall.cpp index c0a9106672746..0326ce53bc4a8 100644 --- a/test/CodeGenCXX/fastcall.cpp +++ b/test/CodeGenCXX/fastcall.cpp @@ -2,7 +2,7 @@  void __attribute__((fastcall)) foo1(int &y);  void bar1(int &y) { -  // CHECK: define void @_Z4bar1Ri +  // CHECK-LABEL: define void @_Z4bar1Ri    // CHECK: call x86_fastcallcc void @_Z4foo1Ri(i32* inreg %    foo1(y);  } @@ -14,7 +14,7 @@ struct S1 {  void __attribute__((fastcall)) foo2(S1 a, int b);  void bar2(S1 a, int b) { -  // CHECK: define void @_Z4bar22S1i +  // CHECK-LABEL: define void @_Z4bar22S1i    // CHECK: call x86_fastcallcc void @_Z4foo22S1i(%struct.S1* inreg %{{.*}}, i32 inreg %    foo2(a, b);  } | 
