summaryrefslogtreecommitdiffstats
path: root/tests/bugs160
diff options
context:
space:
mode:
authoraclement <aclement>2006-11-29 13:43:03 +0000
committeraclement <aclement>2006-11-29 13:43:03 +0000
commit59b0f4e58faa3578969a643b1993ee7cbfc4b5f5 (patch)
tree980c476e04388150d4a4dc29c9b1881143d3258c /tests/bugs160
parentf1520e89e3e9facafe708d390cf91cb43fc1bcb3 (diff)
downloadaspectj-59b0f4e58faa3578969a643b1993ee7cbfc4b5f5.tar.gz
aspectj-59b0f4e58faa3578969a643b1993ee7cbfc4b5f5.zip
test and fix for 166084: istore incorrectly optimized
Diffstat (limited to 'tests/bugs160')
-rw-r--r--tests/bugs160/pr166084/Simple.java14
-rw-r--r--tests/bugs160/pr166084/X.java3
-rw-r--r--tests/bugs160/pr166084/simple.jarbin0 -> 579 bytes
3 files changed, 17 insertions, 0 deletions
diff --git a/tests/bugs160/pr166084/Simple.java b/tests/bugs160/pr166084/Simple.java
new file mode 100644
index 000000000..c5992b4ee
--- /dev/null
+++ b/tests/bugs160/pr166084/Simple.java
@@ -0,0 +1,14 @@
+public class Simple {
+ public static void main(String []argv) {
+ new Simple().m();
+ }
+
+ public void m() {
+ int i = 1;
+ System.out.println(i);
+ }
+}
+
+aspect X {
+ before(): call(* println(..)) {}
+}
diff --git a/tests/bugs160/pr166084/X.java b/tests/bugs160/pr166084/X.java
new file mode 100644
index 000000000..e60c2c397
--- /dev/null
+++ b/tests/bugs160/pr166084/X.java
@@ -0,0 +1,3 @@
+aspect X {
+ before(): call(* println(..)) {}
+}
diff --git a/tests/bugs160/pr166084/simple.jar b/tests/bugs160/pr166084/simple.jar
new file mode 100644
index 000000000..3151ded97
--- /dev/null
+++ b/tests/bugs160/pr166084/simple.jar
Binary files differ